rsnext/test/integration/basic/next.config.js
Tim Neutkens b3045cc7a9
Implement circular JSON err.sh link (#6149)
* Implement circular JSON err.sh link

* Add test for getInitialProps returning circular json

* Make test warn less

* Fix tests

* Add reference to original tests
2019-01-27 16:12:17 +01:00

15 lines
339 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[\\/]about/,
loader: path.join(__dirname, 'warning-loader.js')
})
return config
}
}