mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
7d78c3b641
* Add node_modules bundling under the —lambdas flag for next build * Run minifier when lambdas mode is enabled * Add lambdas option to next.config.js * Add test for lambdas option
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
module.exports = {
|
|
onDemandEntries: {
|
|
// Make sure entries are not getting disposed.
|
|
maxInactiveAge: 1000 * 60 * 60
|
|
},
|
|
lambdas: true
|
|
}
|