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
Thijs Tijsma had a post that worked for me.
You have to run without the debugger attached in Visual Studio (CTRL + F5 in Visual Studio)
in the Pages\_host.cshtml add
Then just make the reload js file
wwwroot\scripts\HotReload.js
window.Blazor.defaultReconnectionHandler.onConnectionDown = function ()
{
window.location.reload();
};