Lang x Lang

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,
  },
}

当社サイトでは、Cookie を使用しています。各規約をご確認の上ご利用ください:
Cookie Policy, Privacy Policy および Terms of Use