Which technique reduces the initial bundle size most effectively in a large Angular application?
- A Minifying CSS
- B Lazy loading feature routes
- C Using more components
- D Increasing change detection frequency
Answer
Lazy loading feature routes
Only the code needed for the current route is downloaded. It also enforces clear feature boundaries, since an entangled feature cannot be lazy loaded.





