rsnext/test/integration/size-limit/next.config.js
Connor Davis fcf1167cd4 Upgrade standard and fix files (#6358)
Upgrades `standard` to major version 12
2019-02-19 22:45:07 +01:00

15 lines
442 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
}
}