I'm trying to get a Blazor WASM app deployed on IIS, following the instructions here.
- This is just the out of the box sample Blazor WASM app
- I've published the app to a folder
- I've added the URL rewriting module to IIS
- I've added dynamic compression support to IIS
- I created a new web app in the default website and pointed it to the folder where I published the Blazor app
Invoking the app produces a page containing "An unhandled error has occurred. Reload".
Looking at the requests in the browser dev tools, index.html is being fecthed from the wwwroot folder, suggesting that the url rewrite rule is firing, but the requests for css/bootstrap.min.css, _framework/blazor.webassembly.js and css/app.css all fail with status 404 - Not Found.
What am I missing?
Windows 10 2004.


