What is the purpose of a lazy-loaded module in Angular?

  • To decrease initial bundle size
  • To ensure a module is always loaded
  • To improve application performance
  • To simplify routing configuration
The purpose of a lazy-loaded module in Angular is to decrease the initial bundle size by loading the module on-demand, typically when a user navigates to a specific route. This helps improve application performance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *