Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
1k views

I'm facing an issue after angular 5 migration with lazy loading. In my webpack.config I'm using angular-router-loader but there is no error in console when I'm running in JIT mode and lazy modules ...
Emmanuel Mendoza's user avatar
1 vote
0 answers
502 views

Webpack has trouble finding a module that I am trying to lazy load with angular-router-loader. I am using the following: Webpack 2.2.1 Angular 5.2 angular-router-loader 0.8.2 Installed the angular-...
Glenster's user avatar
  • 1,317
17 votes
2 answers
21k views

I'm using angular-cli-1.6.3 for bundling my project. I try to rename lazy loaded chunk name into valid module name. But it is not working. Code snippet given below, { path: 'lazy', loadChildren: '....
Srigar's user avatar
  • 1,698
9 votes
8 answers
21k views

I would like to use lazy loading but I can not understand why it does not work, it gives me error "Cannot find module". This is my environment: - Angular 5.2.1 - .NET Core 2 - Webpack 3.10.0 - angular-...
Luciano's user avatar
  • 475
3 votes
2 answers
2k views

Given the following module, how can I create the routes so that when the application loads this module it will route to CComponent and have the AComponent loaded in the named router outlet search-...
peinearydevelopment's user avatar
0 votes
1 answer
162 views

I have this scenario. I have two Angular Modules: AuthModule and DashModule. Each of these modules have their own .routing.tsfiles. Then, each of the modules are imported into the AppModule at the ...
KhoPhi's user avatar
  • 9,577
0 votes
1 answer
593 views

As you see, you have 5 in main module.In there when try to load login it is taking 14 seconds to load .I think login component is waiting for fulllayout component. Could anyone please advice,if i ...
pinku4132's user avatar
1 vote
1 answer
3k views

For now for each rout of my app I am loading exact module. Here is how I am doing that : const routes: Routes = [ { path: '', loadChildren: './pages/site-index/site-index-routing....
Andrey Ponomarenko's user avatar
0 votes
1 answer
698 views

Today I have created a ThemeForest like a website with angular and mvc , So I have a login page, it will load the Dashboard page, In the dashboard page have lots of icons, So i click the Icons , ...
Mohamed Sahir's user avatar
0 votes
1 answer
568 views

I am not able to go directly to the child route. my url is http://localhost:4201/home/profile but the router tracing starts with url: '/home’ instead of url: ‘/home/profile' Router Event: ...
Bhaskar's user avatar
  • 127
0 votes
2 answers
1k views

I have folder structure like: - app -core -vacancy in core folder I have app.routing.ts where I would like to async add route to vacancy. I did it like: export const routing = RouterModule....
Andurit's user avatar
  • 5,802