feat: Add PWA manifest and service worker for offline support

This commit is contained in:
2026-03-27 13:23:58 -07:00
parent 1465bbbee0
commit 8074473f1b
2 changed files with 68 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "EuchreCamp",
"short_name": "EuchreCamp",
"description": "Track your Euchre games and tournaments",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#2d5a27",
"orientation": "portrait-primary",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}