JSFiddle - React, Tailwind, and code Playground
by Luis Martin
JavaScript
window.addEventListener("beforeunload", function (event) {
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = '';
});