rsnext/test/integration/basic/next.config.js
Tim Neutkens 2a50c176cf
Make HMR still apply updates when there is a webpack warning (#6099)
Fixes #5363

I noticed this happening when making some changes on the nextjs.org/learn app. Basically we didn't apply updates when a warning was emitted from webpack. This would cause issues for users using eslint-loader or similar too.
2019-01-21 22:39:39 +01:00

15 lines
329 B
JavaScript

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/,
loader: path.join(__dirname, 'warning-loader.js')
})
return config
}
}