pwa: add app icon SVG and update manifest

Create a minimal SVG icon (512x512, dark rounded square with blue 'M')
and update manifest.json to reference it with purpose 'any'.

This fixes the blank tile on mobile add-to-home-screen and PWA install
prompts.
This commit is contained in:
kami
2026-07-05 11:49:44 +04:00
parent 3f09cdb5ae
commit 00a3bba9cb
2 changed files with 18 additions and 1 deletions
+8 -1
View File
@@ -5,6 +5,13 @@
"display": "standalone",
"background_color": "#111",
"theme_color": "#00aaff",
"icons": [],
"icons": [
{
"src": "/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
}
],
"description": "Voice client and dashboard for Maven"
}