Angular - Routing
Given this route configuration:
What happens when the user navigates to '/profile'?
{ path: 'profile', loadChildren: () => import('./profile/profile.module').then(m => m.ProfileModule) }What happens when the user navigates to '/profile'?
