cd9f26911b
- Add id field and display_override to manifest.json for reliable Chrome Android PWA recognition - Serve manifest.json with application/manifest+json MIME type - Add /i18n.js and locale files to SW app shell cache (were missing) - Bump SW cache version to v21 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
860 B
JSON
23 lines
860 B
JSON
{
|
|
"name": "Oikos Familienplaner",
|
|
"short_name": "Oikos",
|
|
"description": "Selbstgehosteter Familienplaner",
|
|
"id": "/",
|
|
"start_url": "/",
|
|
"scope": "/",
|
|
"display": "standalone",
|
|
"display_override": ["standalone", "minimal-ui"],
|
|
"orientation": "portrait-primary",
|
|
"theme_color": "#007AFF",
|
|
"background_color": "#F5F5F7",
|
|
"lang": "de-DE",
|
|
"categories": ["productivity", "lifestyle"],
|
|
"icons": [
|
|
{ "src": "/icons/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" },
|
|
{ "src": "/icons/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any" },
|
|
{ "src": "/icons/icon-maskable-192.png", "sizes": "192x192", "type": "image/png", "purpose": "maskable" },
|
|
{ "src": "/icons/icon-maskable-512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" }
|
|
],
|
|
"screenshots": []
|
|
}
|