Can someone help me out on this? any help would be greatly appreciated . I have a simple angular application with multiple routes mentioned below
- App1Route1
- App1Route2
- App1Route2
and I have a main app component which uses to display these routes
I wanted to implement single-spa-angular for this application and I followed the steps which is mentioned in this link and made couple of changes in the app-routing-module.ts file as per the suggestion.
After made these changes I will be able to run the application with single-spa like below
But the routing is not working . Finally I had fixed the issue by modifying the app.routing.module.ts file like below
Now I can see the output when I navigate the routes using the links
Now The Issue I am having is , When I refresh the page in the browser with the route-names it is not working and getting a blank page (which is working fine with normal angular application)
Entire Code and steps to reproduce this error is uploaded in https://github.com/SivaAsDeveloper/single-spa-multiple-routes
In your layout definition you need to create a corresponding route for each one you have in angular. When you refresh the page single-spa tries to import an application based on the current path and it won't find anything that matches. So something like this should work:
What lead me to this question is I'm trying to find a simpler way to implement this.