How to configure ASP.net Core server routing for multiple SPAs hosted with SpaServices

Thanks to SteveSandersonMS and chris5287 over on Github for pointing me towards the solution on this. IApplicationBuilder.Map can segregate paths into different areas of concern. If you wrap a call to app.UseSpa in a call to app.Map, the SPA will be handled only for the path specified by the Map call. The app.UseSpa call ends … Read more