I have a module federated angular application where I have a route-guard that redirects to another route. When loaded as standalone application redirection works perfectly, problem occurs when it is inside a shell application where I get an error saying the router cannot find any such routes.
Following are my router configuration
this is the error i get in the console from shell-application

I tried other ways of navigation like navigate(), navigateByUrl() which did not work.
The error occurs only when redirected from route-guard. I'm unsure if this is a limitation or a issue with my implementation


Could you try changing it to
Since you are at the root level, we can try absolute routing to make it work?