rsnext/test/integration/filesystempublicroutes/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

12 lines
276 B
JavaScript

module.exports = {
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
},
useFileSystemPublicRoutes: false,
exportPathMap () {
return {
'/exportpathmap-route': { page: '/exportpathmap-route' }
}
}
}