Bundle Splitting - CI/CD Glossary Definition
Bundle splitting (code splitting) divides an application build into separate chunks loaded on demand, so the initial page downloads only the code it needs and shares common chunks across routes.
Related guides
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…