JSFiddle - React, Tailwind, and code Playground
JavaScript
function checkReloadCount() {
document.body.innerText = 'checking';
if (localStorage.getItem('isLoaded') !== 'yes') {
localStorage.setItem('isLoaded', 'yes');
alert('reloading now');
document.body.innerText += ' - loaded once';
location.reload();
} else {
alert('not reloading');
document.body.innerText += ' - loaded twice';
}
}
window.onload = checkReloadCount();