flecks/packages/server/build/hooks/@flecks/core.config.js
cha0s 66b4a95cf0 feat: require.context in bootstrap scripts
fix: test running
chore: task coloring
refactor: hooks
2024-02-14 06:34:29 -06:00

25 lines
473 B
JavaScript

exports.hook = () => ({
/**
* Whether HMR is enabled.
*/
hot: false,
/**
* Arguments to pass along to node. See: https://nodejs.org/api/cli.html
*/
nodeArgs: [],
/**
* Environment to pass along to node. See: https://nodejs.org/api/cli.html#environment-variables
*/
nodeEnv: {},
/**
* Whether to start the server after building.
*/
start: true,
/**
* Webpack stats configuration.
*/
stats: {
preset: 'minimal',
},
});