mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 15:24:32 +00:00
- Generate 192x192 blue/white M icon as favicon.png - manifest.json: add id field, proper icon sizes (192/512), purpose: any - mdcms.py generate_pwa(): respect favicon config key, skip icons if file missing, emit id and correct sizes https://claude.ai/code/session_01UP8Wo2CKPNhvvTkzX48CWF
23 lines
No EOL
466 B
JSON
23 lines
No EOL
466 B
JSON
{
|
|
"id": "/",
|
|
"name": "MD-CMS Phase 7 Test",
|
|
"short_name": "MDCMS Test",
|
|
"start_url": "./",
|
|
"display": "standalone",
|
|
"background_color": "#ffffff",
|
|
"theme_color": "#2563EB",
|
|
"icons": [
|
|
{
|
|
"src": "assets/images/favicon.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png",
|
|
"purpose": "any"
|
|
},
|
|
{
|
|
"src": "assets/images/favicon.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png",
|
|
"purpose": "any"
|
|
}
|
|
]
|
|
} |