Answer by Adnan Awwad for How to host multiple React SPA apps on a single...
What if I need to remain SpaApp1 hosted at / instead of /admin.Because if I changed /admin to / in the code above, the compile returns an exception saying that the path value should not end with /.
View ArticleAnswer by Itinerati for How to host multiple React SPA apps on a single...
I've come up with a solution that's working for me, based on the answer by @cminus.First, I created this helper function, where codeFolderPath is the where my app folder is, and spaPath is the...
View ArticleAnswer by cminus for How to host multiple React SPA apps on a single ASP.NET...
Come up with a possible solution. The expectation is that the build SPA will have the contents of its build directory copied into a folder in the wwwroot folder of the .NET Core project that uses the...
View ArticleHow to host multiple React SPA apps on a single ASP.NET Core site?
I'm trying to run multiple React SPA apps using ASP.NET Core 3.1 with the lastest SpaServices extension and have a problem serving static assets. Much of what I've built comes from a similar question...
View Article