Skip to content

Instantly share code, notes, and snippets.

@DeMoorJasper
Created February 21, 2019 20:54
Show Gist options
  • Save DeMoorJasper/439d6657538e31f19245a2109bbafff7 to your computer and use it in GitHub Desktop.
Save DeMoorJasper/439d6657538e31f19245a2109bbafff7 to your computer and use it in GitHub Desktop.
HMR Util
module.exports = function wrapHMR(module) {
if (module.hot) {
module.hot.dispose(() => {
window.location.reload();
});
}
return module;
}
require("./hmr")(module);
document.getElementById("hey").innerHTML =
document.getElementById("hey").innerHTML + "<h1>oioioioioioioiioioiooioioi</h1>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment