メインコンテンツまでスキップ

distDir

デフォルトの .next の代わりに使用するカスタムビルドディレクトリの名前を指定できます。

next.config.js を開いて distDir を追加します:

next.config.js
module.exports = {
distDir: 'build',
}

これで next build を実行すると、Next.js はデフォルトの .next フォルダーの代わりに build を使用します。

distDir はプロジェクトディレクトリの外に設定してはいけません。たとえば、../build無効なディレクトリです。