What does the Angular CLI command 'ng build --configuration production' enable?
- A Source maps and verbose logging
- B Ahead-of-time compilation, minification, tree shaking and budget checks
- C Live reload
- D Unit test execution
Answer
Ahead-of-time compilation, minification, tree shaking and budget checks
Production builds also enable optimisations that catch template errors at compile time, which is why some issues only appear in production builds.





