I have just one, quick question. Is there way to hot reload a blazor app? At least, .razor files? Now I\'m hosting my app on local IIS (not IIS express).
I was looki
Add
to your .csproj and then run:
dotnet watch run debug
This is not a hot reload as you might expect but it automates the re-run process. You'll just have to wait some seconds and reload the page.