rsnext/test/integration/serverless/next.config.js
JJ Kasper e2d713f93e De-experimentalize the public/ folder (#8661)
* Remove experimental.publicDirectory config

* Error when public is set as an output dir

* Remove experimental.publicDirectory checks

* Update publicFiles checking in next build
2019-10-06 13:44:03 +02:00

9 lines
248 B
JavaScript

module.exports = {
target: 'serverless',
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
},
// make sure error isn't thrown from empty publicRuntimeConfig
publicRuntimeConfig: {}
}