Problem Statement
Explain lazy loading and provide a route example.
Explanation
Lazy loading splits the app into feature bundles that load on demand, reducing initial bundle size and speeding up startup.
Code Solution
SolutionRead Only
{ path: 'admin', loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule) }