What is code splitting?
- A Separating CSS from HTML
- B Breaking the bundle into chunks loaded on demand, typically per route
- C Splitting code across multiple developers
- D Minifying JavaScript
Answer
Breaking the bundle into chunks loaded on demand, typically per route
Code splitting reduces the initial bundle so the first page loads faster. Route-level splitting is usually the highest-value application of it.





