How is lazy loading configured for a route?
- A With the component property
- B With loadChildren returning a dynamic import
- C With the redirectTo property
- D With the pathMatch property
Answer
With loadChildren returning a dynamic import
loadChildren with a dynamic import creates a separate bundle fetched on first navigation, which is the largest single win for initial load time.





