How to handle multiple SPA application in ASP.NET Core

后端 未结 2 1807
[愿得一人]
[愿得一人] 2020-12-31 23:59

I have an ASP.NET Core Web API application, I want to serve two Angular apps, one for admin and one for users.

In production, I don\'t use angular CLI tools so there

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-01 00:26

    another tip: I'm using react and the react-router cannot handle path in URL correctly. So I use a different port for different spa. Use "app.MapWhen(o => o.Request.Host == 6000, ...)" to handle this case.

    In production, should be something like : MapWhen(o => o.Request.Host.Host == "a.com"...

提交回复
热议问题