When using Lazy Loading, which property in the Angular routing configuration is used to point to the lazily loaded module?

  • importModule
  • lazyModule
  • loadChildren
  • loadModule
When implementing Lazy Loading in Angular, the loadChildren property in the routing configuration is used to specify the path to the lazily loaded module. This allows Angular to load the module on-demand when the associated route is visited, improving initial page load times.
Add your answer
Loading...

Leave a comment

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