Trying to deploy my Angular 8 application hosted within my ASP.NET Core application in the wwwroot folder has been a bit challenging. Previously, I had successfully accomplished this by following these steps:
- Adjusted the
web.config
file of the ASP.NET Core web api to utilizeASPNETCORE_ENVIORNMENT=DEVELOPMENT
- Set up the angular
index.html
file withbase href
pointing to/virtualApplicationName/
While checking the network tab, all static files were downloading without any problems:
https://i.sstatic.net/F7Kve.png
However, I keep encountering this issue: https://i.sstatic.net/2FMGx.png
Does anyone have suggestions on other methods I could try?
Thank you