feat(web): immich as webapp, add apple icons and manifest file (#2310)

* add apple specific icons
so it can be added to homescreen

* remove jpg icons

* change background color to white

---------

Co-authored-by: faupau03 <paul.paffe@gmx.net>
This commit is contained in:
faupau
2023-04-24 03:30:38 +02:00
committed by GitHub
parent 13f178dca8
commit d565a684a1
37 changed files with 323 additions and 0 deletions

35
web/static/manifest.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "Immich",
"short_name": "Immich",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"icons": [
{
"src": "manifest-icon-192.maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "manifest-icon-192.maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "manifest-icon-512.maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "manifest-icon-512.maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"description": "Self-hosted photo and video backup solution directly from your mobile phone.",
"lang": "en"
}