I\'m trying to lazy load Angular 2 modules with the router, and I\'m having this error:
error_handler.js:50 EXCEPTION: Uncaught (in promise): Error: C
Use it like this
{ path : 'company', loadChildren: () => import('./company/company.module').then(m => m.CompanyModule) },