Fix: Android pwa app without logo (#280)

* refactor(assets): rename logo svg files to include dimensions

* feat(assets): add 192x192 png versions of logos for PWA support

* fix(pwa): update static webmanifest with new logo paths and sizes

* fix(pwa): update dynamic manifest generation to use new 512px and 192px icons
This commit is contained in:
Nelson Pires
2026-02-04 02:38:57 +02:00
committed by GitHub
parent 8b3765e362
commit 2785f4d9ad
6 changed files with 23 additions and 11 deletions
+15 -9
View File
@@ -33,15 +33,21 @@
"background_color": "#151313",
"theme_color": "#edb449",
"orientation": "portrait-primary",
"icons": [
{
"src": baseUrl + "/logo-dark.svg",
"sizes": "512x512",
"type": "image/svg+xml",
"purpose": "any maskable"
},
{
"src": baseUrl + "/apple-touch-icon-180x180.png",
"icons": [
{
"src": baseUrl + "/logo-dark-512x512.svg",
"sizes": "512x512",
"type": "image/svg+xml",
"purpose": "any"
},
{
"src": baseUrl + "/logo-dark-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": baseUrl + "/apple-touch-icon-180x180.png",
"sizes": "180x180",
"type": "image/png",
"purpose": "any"