rsnext/test/integration/size-limit/next.config.js
Joe Haddad b3170d2648
Format missed files (#7464)
* Format missed files

* Remove unnecessary rule

* Fix type error
2019-05-29 18:19:32 -07:00

17 lines
462 B
JavaScript

const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
module.exports = {
webpack (config, { isServer }) {
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: `dist/${isServer ? 'server' : 'client'}.html`,
openAnalyzer: false
})
)
return config
},
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
}
}