Hi, I've published the app on localhost IIS (right click... Publish... in Solution Explorer). The problem is that **_index.html_** can't find the resources (.js, .css) because the routes are resolved: `http://localhost/css/*.css` instead of `http://localhost/AspNetCoreVueStarter/css/*.css`  But if I deploy to Azure (right click... Publish... in Solution Explorer), it works fine, the routes are correctly resolved:  URL: [https://aspnetcorevuestarter20200401150304.azurewebsites.net/](https://aspnetcorevuestarter20200401150304.azurewebsites.net/) What is missing in order to IIS to solve correctly the routes of static assets invoked from **_index.html_**? Thank you.