Files
the-nexus/manifest.json
Alexander Whitestone e3f474662e feat: add PWA manifest + service worker for offline + home screen install
- manifest.json with icons, theme colors, standalone display mode
- sw.js: cache-first service worker caching local assets and Three.js CDN
  modules, fonts; graceful offline fallback with cached index.html
- Offline banner (visible when navigator.onLine === false)
- iOS/Android home screen meta tags (apple-mobile-web-app-capable etc.)
- 192x192 and 512x512 PNG icons with nexus sigil design

Fixes #14
2026-03-23 21:23:15 -04:00

26 lines
627 B
JSON

{
"name": "The Nexus — Timmy's Sovereign Home",
"short_name": "The Nexus",
"description": "Timmy's sovereign 3D space. A crystalline hub outside time.",
"start_url": "/",
"display": "standalone",
"orientation": "landscape",
"background_color": "#050510",
"theme_color": "#4af0c0",
"categories": ["games", "entertainment"],
"icons": [
{
"src": "icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}