Files
nanobot/webui/public/manifest.json
T
zpljd258andchengyongru 43ca12960b feat(webui): add PWA support for mobile home screen installation
- Add manifest.json with icons for install prompt
- Add service worker with cache-first for static assets
- Register SW in main.tsx
- Link manifest in index.html
2026-08-11 20:59:06 +08:00

34 lines
714 B
JSON

{
"name": "nanobot",
"short_name": "nanobot",
"description": "nanobot AI assistant",
"start_url": "/",
"display": "standalone",
"background_color": "#161618",
"theme_color": "#161618",
"orientation": "any",
"icons": [
{
"src": "/brand/nanobot_apple_touch.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "/brand/nanobot_icon_192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/brand/nanobot_icon_512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/brand/nanobot_icon_maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}