I have two applications running at the same time, the first is the new implementation in Angular 7 + asp core, the second is a legacy application in
asp mvc 5 (no Angular app, that HTML does not implement any Angular code), the problem is that we want to slowly get rid of the legacy app.
For this we have decided to call certain controllers (mvc5) renderer for the legacy application in the server, so the call to /legacy/menu returns an html with the menu of the legacy application.
How can I elegantly trick an Angular 7 component, so that when I call a RouterModule they return the /legacy/menu html?
I understand that it's not the Angular concept but what we want to have two components "one for the new app" and the other one" for the legacy version",
while we are implementing the new version, have the step component of the old version. All of this is a provisional idea to make the transition.