Add PWA support for install-to-home-screen
Adds manifest.json, service worker with static asset caching, resized cat icons, and meta tags for iOS/Android installability. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
14
raggr-frontend/public/manifest.json
Normal file
14
raggr-frontend/public/manifest.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "Ask Simba",
|
||||
"short_name": "Simba",
|
||||
"description": "Chat with Simba - your AI cat companion",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#FAF8F2",
|
||||
"theme_color": "#2A4D38",
|
||||
"icons": [
|
||||
{ "src": "/pwa-icon-192.png", "sizes": "192x192", "type": "image/png" },
|
||||
{ "src": "/pwa-icon-512.png", "sizes": "512x512", "type": "image/png" },
|
||||
{ "src": "/pwa-icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" }
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user