Skip to content

Instantly share code, notes, and snippets.

@thijstijsma
Last active June 20, 2020 07:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thijstijsma/a92d6055be410c693483a097803f2e80 to your computer and use it in GitHub Desktop.
Save thijstijsma/a92d6055be410c693483a097803f2e80 to your computer and use it in GitHub Desktop.
Blazor Hot Reload
<script src="_framework/blazor.server.js"></script>
<!-- Make sure you place it after the include for blazor.server.js -->
<environment include="Development">
<script src="~/Scripts/HotReload.js"></script>
</environment>
window.Blazor.defaultReconnectionHandler.onConnectionDown = function ()
{
window.location.reload();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment