staticGeneration*
staticGeneration*
オプションを使用すると、高度なユースケースに対して静的生成プロセスを設定できます。
- TypeScript
- JavaScript
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
: 新しいワーカーを開始する前に処理される最小ページ数