Lazy Loading without adding route segment for module – SEO
To implement Lazy Loading in Angular app, we need to add module route / main page (/public/) and then inner page route(/contact-us) like { path: 'public', loadChildren: '../public/public.module#PublicModule' } and inside PublicRouting { path: 'contact-us', component: ContactUsComponent } now for…