nodefony
Version:
Nodefony Framework Core
23 lines (22 loc) • 490 B
JavaScript
/**
* OVERRIDE framework-bundle config
*
* see FRAMEWORK BUNDLE config for more options
*
*/
module.exports = {
webpack: {
cache: true,
outputFileSystem: "file-system", // memory-fs not implemented yet
stats: {
colors: true,
preset: 'normal' // normal || minimal || verbose || detailed || summary
},
watchOptions: {
ignored: /node_modules|assets/,
aggregateTimeout: 1000,
poll: false,
followSymlinks: true
}
}
};