Vendor Chunk - CI/CD Glossary Definition
A vendor chunk holds your third-party dependencies separately so they cache across deploys of your own code.
A vendor chunk is an output chunk containing third-party dependencies (typically from node_modules), separated from application code so it can be cached independently. It changes only when dependencies change.
Because libraries change less often than app code, splitting them into a vendor chunk lets browsers keep the cached copy while you ship frequent app updates. Bundlers create it via split-chunks configuration. In CI, bundle analysis shows vendor chunk size trends.
Related guides
Chunk - CI/CD Glossary DefinitionChunk: A chunk is one of the output files a bundler produces when it splits code. Each chunk groups a set of…
Code Splitting - CI/CD Glossary DefinitionCode Splitting: Code splitting breaks a bundle into multiple smaller chunks that load on demand rather than a…
Bundle Analysis - CI/CD Glossary DefinitionBundle Analysis: Bundle analysis is inspecting a build output to see which modules contribute to size, usuall…