rsnext/test/integration/profiling/next.config.js
Tim Neutkens 53a336ce5a
Simplify profiling and add serverless target (#7007)
I'm using this to profile right now, so it's probably good to update it.
2019-04-11 16:21:58 +02:00

10 lines
199 B
JavaScript

module.exports = {
target: 'serverless',
experimental: {
profiling: true
},
onDemandEntries: {
// Make sure entries are not getting disposed.
maxInactiveAge: 1000 * 60 * 60
}
}