We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
facing below issue after implementing lazy loading.
The text was updated successfully, but these errors were encountered:
@nileshpatilwork Please follow the issue template so we can help you, we need a bit more context such as OS, version etc as in the template.
Seems related to angular/angular-cli#9775
Sorry, something went wrong.
I am using Windows 7, Angular 5.2.5, ngx-generator 4.1.0 I can see about.module.chunk.js loaded initially when app loaded. Please check below image.
That's not a bug, that's by design look at app-routing.module.ts:
app-routing.module.ts
imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })],
The default strategy is to preload all modules, so get the best of both worlds:
You can change this behavior or implement your own if needed, see https://medium.com/@adrianfaciu/custom-preloading-strategy-for-angular-modules-b3b5c873681a for more details.
No branches or pull requests
facing below issue after implementing lazy loading.

The text was updated successfully, but these errors were encountered: