import {Hooks} from '@flecks/core'; export default { [Hooks]: { '@flecks/core.config': () => ({ /** * Whether HMR is enabled. */ hot: false, /** * Whether the Node.js inspector is enabled. */ inspect: false, /** * Whether Node.js profiling is enabled. */ profile: false, /** * Whether to start the server after building. */ start: true, /** * Webpack stats configuration when building server target. */ stats: { chunks: false, colors: true, modules: false, }, }), }, };