onDemandEntries
Next.js は、 development 中に server が build されたページをどのように処分するか、またはメモリに保持するかの一部の制御を可能にするいくつかの options を公開します。
default を変更するには、next.config.js
を開き、onDemandEntries
の config を追加してください。
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,
},
}