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/
What is missing in order to IIS to solve correctly the routes of static assets invoked from index.html?
Thank you.