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

16 lines
339 B
JavaScript
Raw Normal View History

const path = require('path')
module.exports = {
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
},
webpack (config) {
config.module.rules.push({
test: /pages[\\/]hmr[\\/]about/,
loader: path.join(__dirname, 'warning-loader.js')
})
return config
}
}