feat: PWA support — manifest, service worker, icons, public auth exemption

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Scott Idem
2026-04-29 18:46:33 -04:00
parent f726d78979
commit 25182a1765
9 changed files with 138 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
{
"name": "Cortex · Inara",
"short_name": "Cortex",
"description": "Personal AI assistant",
"start_url": "/",
"scope": "/",
"display": "standalone",
"background_color": "#1a1228",
"theme_color": "#1a1228",
"icons": [
{
"src": "/static/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/static/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/static/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
}
]
}