Emergency fix for auth rendering: added SW unregister, diagnostic borders, and forced visibility styles
This commit is contained in:
@ -17,6 +17,13 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script>
|
||||
if ('serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.getRegistrations().then(function(registrations) {
|
||||
for(let registration of registrations) { registration.unregister(); }
|
||||
});
|
||||
}
|
||||
</script>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user