Bundle Splitting - CI/CD用語集の定義
Bundle splitting(code splitting)は、アプリケーションのbuildをオンデマンドで読み込まれる別々のchunkに分割し、初期ページが必要なコードだけをダウンロードし、共通のchunkをルート間で共有できるようにします。
関連ガイド
Tree Shaking - CI/CD Glossary DefinitionTree shaking removes code that is never imported or used from a bundle by analyzing the module graph, shrinki…
Minification - CI/CD Glossary DefinitionMinification shrinks code by removing whitespace, comments, and long names without changing behavior, so the…
Source Map - CI/CD Glossary DefinitionA source map links minified or transpiled output back to original source, so stack traces and debuggers point…