Blazor debugging - IIS doesn't update wwwroot files

Viewed 2259

I'm developping a Blazor application client-side with Visual Studio. And when I run the app in debug, my css and js files are not updated.

I tried to clear browser cache, clean and rebuild the solution, quit IIS, reboot... and my files still remain in the old version.

I even renamed a js file, but when my browser download the app, he still download the old js file and not the new one.

How can I force the update when I make some changes in my css or js files ?

1 Answers

Ok, I could reproduce the issue, just disable caching:

enter image description here

Related