Remove PWA support
Build Docker Image & Security / build-scan-push (push) Successful in 2m5s

This commit is contained in:
2026-07-07 15:33:02 +01:00
parent 12dafef7d3
commit 8f60b5dcda
5 changed files with 6 additions and 162 deletions
+1 -13
View File
@@ -4,12 +4,6 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SysAdmin Arcade</title>
<meta name="theme-color" content="#030712">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="SysAdmin Arcade">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="manifest" href="manifest.webmanifest">
<link rel="icon" href="favicon/arcade-favicon.ico" sizes="any">
<link rel="icon" href="favicon/arcade-favicon-16.png" type="image/png" sizes="16x16">
<link rel="icon" href="favicon/arcade-favicon-32.png" type="image/png" sizes="32x32">
@@ -675,14 +669,8 @@
})
.catch(() => {
gameCount.textContent = '?';
gameGrid.innerHTML = '<div class="empty-state">Could not load <code>games.json</code>. Serve this directory over HTTP and check the manifest path.</div>';
gameGrid.innerHTML = '<div class="empty-state">Could not load <code>games.json</code>. Serve this directory over HTTP and check the games list path.</div>';
});
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('sw.js');
});
}
</script>
</body>
</html>