mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-14 20:53:26 +00:00
06e73d7a5e
site.webmanifest declared no start_url, so the page that linked it became one and an install started inside a room reopened that room on every launch. It now declares "/", moves out of public/ and takes VITE_APP_TITLE for name and short_name, which shipped empty and leaned on the browser falling back to the title. The frontend Dockerfile now declares that build argument, so the value compose.yml passes stops being dropped.
19 lines
346 B
JSON
19 lines
346 B
JSON
{
|
|
"icons": [
|
|
{
|
|
"src": "/android-chrome-192x192.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/android-chrome-512x512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
}
|
|
],
|
|
"start_url": "/",
|
|
"theme_color": "#ffffff",
|
|
"background_color": "#ffffff",
|
|
"display": "standalone"
|
|
}
|