Adds a web manifest, hand-drawn cup+frame icons, and a presence-only service worker (no offline caching) so mobile browsers offer "Add to Home Screen" for the server UI.
15 lines
424 B
JSON
15 lines
424 B
JSON
{
|
|
"name": "ESPresso Frame",
|
|
"short_name": "ESPresso",
|
|
"description": "Manage your e-ink photo frames.",
|
|
"start_url": "/",
|
|
"scope": "/",
|
|
"display": "standalone",
|
|
"background_color": "#f5f6f8",
|
|
"theme_color": "#2563eb",
|
|
"icons": [
|
|
{ "src": "/static/icons/icon-192.png", "sizes": "192x192", "type": "image/png" },
|
|
{ "src": "/static/icons/icon-512.png", "sizes": "512x512", "type": "image/png" }
|
|
]
|
|
}
|