Menu

staticGeneration*

staticGeneration* オプションを使用すると、高度なユースケースのためにスタティック生成プロセスを設定できます。

next.config.ts
import type { NextConfig } from 'next'
 
const nextConfig: NextConfig = {
  experimental: {
    staticGenerationRetryCount: 1,
    staticGenerationMaxConcurrency: 8,
    staticGenerationMinPagesPerWorker: 25,
  },
}
 
export default nextConfig
next.config.js
const nextConfig = {
  experimental: {
    staticGenerationRetryCount: 1
    staticGenerationMaxConcurrency: 8
    staticGenerationMinPagesPerWorker: 25
  },
}
 
export default nextConfig;

設定オプション

以下のオプションが利用可能です:

  • staticGenerationRetryCount: ビルドを失敗とする前に、ページ生成の失敗を再試行する回数。
  • staticGenerationMaxConcurrency: ワーカーごとに処理するページの最大数。
  • staticGenerationMinPagesPerWorker: 新しいワーカーを開始する前に処理するページの最小数。