- Generate 192x192, 512x512, 180x180, 32x32, and 16x16 icons from logo - Add manifest.json for PWA install support (standalone display) - Add apple-touch-icon for iOS home screen - Use sized favicons instead of full 1024x1024 logo.png
28 lines
559 B
JSON
28 lines
559 B
JSON
{
|
|
"name": "PinchChat",
|
|
"short_name": "PinchChat",
|
|
"description": "A sleek, dark-themed webchat UI for OpenClaw",
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"background_color": "#1e1e24",
|
|
"theme_color": "#1e1e24",
|
|
"icons": [
|
|
{
|
|
"src": "/logo-192.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/logo-512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/logo-512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png",
|
|
"purpose": "maskable"
|
|
}
|
|
]
|
|
}
|