rsnext/test/integration/css/next.config.js

12 lines
254 B
JavaScript
Raw Normal View History

module.exports = {
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
},
experimental: { css: true, granularChunks: true },
webpack (cfg) {
cfg.devtool = 'source-map'
return cfg
}
}