I\'m a newbie for Angular 4+ (currently using v.6). I\'ve been trying to use this.router.navigate([\'/landing\']) function to redirect from login component to l
try change this:
{ path: 'login', loadChildren: './login/login.module#LoginModule' }
to this:
{ path: 'login', loadChildren: () => LoginModule }