rsnext/test/integration/css-fixtures/custom-configuration-legacy/next.config.js
Joe Haddad d650da0623
Remove refs to old css experiment (#13673)
Removes some dangling references to non-existent experimental options.
2020-06-02 16:57:35 +00:00

12 lines
254 B
JavaScript

const withCSS = require('@zeit/next-css')
module.exports = withCSS({
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60,
},
webpack(cfg) {
cfg.devtool = 'source-map'
return cfg
},
})