Files
AetherForge/server/web/index.html
drjones e11fb30350 Fix dashboard black screen, add login gate, and expand README.
Pin React Three Fiber to React 18, remove PWA caching, add SessionGate and error boundaries, and document movie fusion, auth, outputs, and troubleshooting.
2026-05-29 08:50:48 -07:00

29 lines
908 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0d0d12" />
<link rel="apple-touch-icon" href="/vite.svg">
<title>AetherForge — LAN Mining Command Deck</title>
</head>
<body>
<div id="root"></div>
<script>
(function () {
if (!('serviceWorker' in navigator)) return;
navigator.serviceWorker.getRegistrations().then(function (regs) {
regs.forEach(function (r) { r.unregister(); });
});
if (window.caches) {
caches.keys().then(function (keys) {
keys.forEach(function (k) { caches.delete(k); });
});
}
})();
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>