I had an anugular 14 app which was using canLoad
to guard a lazy loaded module. It was working as expected. Then I added ng add @angular-architects/module-federation@14.3.14 --project mainapp --port 5000
to this app. Once I added module federation the canLoad
stopped working.
Please suggest any work around.
The problem is webpack ordering canLoad
after canActivate
How to do proper ordering?