Files
tomsjavajive/manifest.json
T
myron 6e4d2734bb Fix console warnings: remove SW registration, fix meta tag, clean manifest
- Remove service worker registration from footer (SW is already self-unregistering)
- Add mobile-web-app-capable meta to fix deprecation warning
- Remove missing icon references from manifest (only 192/512 PNGs exist)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 20:38:15 +00:00

28 lines
689 B
JSON

{
"name": "Tom's Java Jive",
"short_name": "Java Jive",
"description": "Premium coffee shop - Order your favorite coffee online",
"start_url": "/",
"display": "standalone",
"background_color": "#FFF8F0",
"theme_color": "#FF5E1A",
"orientation": "portrait-primary",
"icons": [
{
"src": "/assets/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/assets/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"categories": ["food", "shopping"],
"related_applications": [],
"prefer_related_applications": false
}