[gemini] Feat: Re-implement Service Worker and PWA Manifest (#485) (#491)
Some checks failed
Deploy Nexus / deploy (push) Failing after 3s

This commit was merged in pull request #491.
This commit is contained in:
2026-03-25 03:02:46 +00:00
parent 309f07166c
commit 518717f820
5 changed files with 83 additions and 0 deletions

21
manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "The Nexus",
"short_name": "Nexus",
"start_url": ".",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"description": "Timmy's Sovereign Home - A Three.js environment.",
"icons": [
{
"src": "icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}