onDemandEntries
Next.js 暴露了一些选项,让你可以在开发环境中控制服务器如何处理或保留内存中的构建页面。
要更改默认设置,请打开 next.config.js 并添加 onDemandEntries 配置。
next.config.js
module.exports = {
onDemandEntries: {
// period (in ms) where the server will keep pages in the buffer
maxInactiveAge: 25 * 1000,
// number of pages that should be kept simultaneously without being disposed
pagesBufferLength: 2,
},
}这有帮助吗?