Production Build - CI/CD用語集の定義
production build はすべての最適化を適用してデプロイ可能なファイルを出力し、CI がリリース前に実行する build です。
production build は、minification、tree shaking、asset ハッシュを含むすべての最適化を有効にしてアプリをコンパイルし、デプロイ可能なファイルを生成します。CI がリリース前に実行する build です。
environment mode を production に設定すると、minification、dead code elimination、content ハッシュが有効になり、開発時専用の警告が除去されます。これが CI が出荷する artifact です。速度とデバッグのしやすさを優先する development build とは大きく異なります。
関連ガイド
Development Build - CI/CD Glossary DefinitionDevelopment Build: A development build compiles an app for fast iteration and debugging, skipping heavy optim…
Environment Mode - CI/CD Glossary DefinitionEnvironment Mode: Environment mode is the setting (typically `development` or `production`) that tells a bund…
Asset Hashing - CI/CD Glossary DefinitionAsset Hashing: Asset hashing embeds a content-derived hash in output filenames (for example `app.3f9a1c.js`)…