ngx-quicklink
ngx-quicklink copied to clipboard
Quicklink prefetching strategy for the Angular router
HI, This PR allows the developer to force reload a route without waiting for `ngx-quicklink` to discover it. Fixes #81 Let me know If I missed something and need to...
Supposedly fixes the issue https://github.com/mgechev/ngx-quicklink/issues/102
Tried to use `ngx-quicklink` with the angular 13 but the compilation is failing with the below logs. Any quick fix can help or let me know it’s a bug. I'm...
After upgrading to Angular `13.2.5` the following Error occurs: (`13.2.4` works fine) ``` Uncaught Error: Type QuicklinkModule does not have 'ɵmod' property. at getNgModuleDef (core.mjs:1139:1) at recurse (core.mjs:21757:1) at recurse...
The logic that initiates preloading of a lazy route doesn't handle potential load errors (e.g. bad network connection) so they are thrown. I think preloader should ignore them as they're...
Due to changes in the packaging of Angular 13 package format. Libraries should publish Ivy native distributions now. The currently released version of this library doesn't seem to have changed...
### TL; DR For a default CD cycle, when routerLink is not a string, but a computed array, the ngOnChange triggers each cycle and pushes new tree into registry, creating...
I would imagine doing it somewhat like this: ```javascript export const routes: Routes = [ { path: 'contact', loadChildren: import(() => './contact/contact.module').then(m => m.ContactModule), data: { preload: true } }...
Hi and thanks for the library. But I have an issue 😬 ### Description For example, we have a categories page (lazy module) and when we click on "Categories" link...