What Is a Bundle Analyzer?
A bundle analyzer is a tool that inspects a compiled build and renders a breakdown, often a treemap, of how much each module and dependency contributes to total size. It makes large or duplicated packages obvious at a glance. Teams use it to decide what to trim, lazy-load, or replace.
Why it matters
Without a visual breakdown, a single oversized dependency can quietly bloat a bundle. Running an analyzer, or a size check derived from it, in CI keeps bundle growth visible per change.
Related guides
What Is a Vendor Chunk?A vendor chunk is a separate bundle file that holds third-party library code, kept apart from application cod…
What Is a Code Splitting Strategy?A code splitting strategy is the plan a build uses to break a bundle into smaller chunks loaded on demand, so…
What Is Source Map Upload?Source map upload is the CI step that sends build source maps to an error-tracking service so minified produc…