4236621c7a
The static-copy step landed the android icons at dist/public/android/ (stripBase dropped the res/ segment), never copied public/res/apple/ or public/favicon.ico at all, and the manifest pointed at /res/android/ — so every PWA icon, apple-touch icon, og:image, and the favicon 404'd on the live server. Copy all of public/res -> dist/public/res and public/favicon.ico -> dist/public/, and point manifest.json icons at ./public/res/android/ — matching the /public/res and /public/favicon.ico paths index.html already uses. Verified in dist/. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
87 lines
2.1 KiB
JSON
87 lines
2.1 KiB
JSON
{
|
|
"name": "Lotus Chat",
|
|
"short_name": "Lotus Chat",
|
|
"description": "Lotus Chat \u2014 the Lotus Guild Matrix client",
|
|
"dir": "auto",
|
|
"lang": "en-US",
|
|
"display": "standalone",
|
|
"orientation": "portrait",
|
|
"start_url": "./",
|
|
"background_color": "#0a0a0a",
|
|
"theme_color": "#980000",
|
|
"icons": [
|
|
{
|
|
"src": "./public/res/android/android-chrome-36x36.png",
|
|
"sizes": "36x36",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-48x48.png",
|
|
"sizes": "48x48",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-72x72.png",
|
|
"sizes": "72x72",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-96x96.png",
|
|
"sizes": "96x96",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-144x144.png",
|
|
"sizes": "144x144",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-192x192.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-256x256.png",
|
|
"sizes": "256x256",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-384x384.png",
|
|
"sizes": "384x384",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/android-chrome-512x512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "./public/res/android/maskable-192x192.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png",
|
|
"purpose": "maskable"
|
|
},
|
|
{
|
|
"src": "./public/res/android/maskable-512x512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png",
|
|
"purpose": "maskable"
|
|
}
|
|
],
|
|
"categories": ["social", "communication", "productivity"],
|
|
"shortcuts": [
|
|
{
|
|
"name": "New Message",
|
|
"short_name": "DM",
|
|
"description": "Open a new direct message",
|
|
"url": "/",
|
|
"icons": [
|
|
{
|
|
"src": "public/res/android/android-chrome-96x96.png",
|
|
"sizes": "96x96"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|