flecks/packages/server/src/index.js

25 lines
487 B
JavaScript
Raw Normal View History

export const hooks = {
'@flecks/core.config': () => ({
/**
* Whether HMR is enabled.
*/
hot: false,
/**
* Arguments to pass along to node. See: https://nodejs.org/api/cli.html
*/
nodeArgs: [],
/**
* Whether to start the server after building.
*/
start: true,
/**
* Webpack stats configuration when building server target.
*/
stats: {
chunks: false,
colors: true,
modules: false,
},
}),
2022-02-25 04:58:08 -06:00
};