ng-router-loader
ng-router-loader copied to clipboard
Webpack loader for NgModule lazy loading using the angular router
Hi there, I'm getting the above error when I'm configuring my routes. I'm following the docs exactly as described, but the lamba expression fails the Typescript intellisense (in VS2015) and...
Hi, first thanks for this awesome loader. I'm writing this to confirm if this loader is still needed by an angular6 project as we are trying to upgrade from 4...
Hi, Not sure if this is an issue with this package or just the way I'm using it but would appreciate any pointers. I have a custom Angular library that...
Since [version 2.4](https://github.com/webpack/webpack/releases/tag/v2.4.0) Webpack supports annotating `import()` calls with the name of the chunk: ```js import(/* webpackChunkName: "my-chunk-name" */ "module") ``` This pull request adds the implementation of adding that...
Angular 4, ..
Hello, I have `AppModule`, few independent modules that are lazy-loaded and `SharedModule`. Each module imports the `SharedModule`. **app.routing.ts** Before using this plugin, I did it this way: ```typescript // ......
Hey, I am encounting a weird problem where the replacement doesn't work for this Routing Entry: ```typescript { path: "binary-search-tree-traverse", loadChildren: "./exercises/tree/binary-search-tree/traverse/binary-search-tree-traverse.module#BinarySearchTreeTraverseModule" } ``` If I remove one additional folder...
I found that in complex folder structures the path of the modules is not resolved well for lazy loading routes. This is how my folder structure looks like: ``` code...