From c6836e02c810e8adb12c3a4b110f9604cf5b7b81 Mon Sep 17 00:00:00 2001 From: Danshil Mungur Date: Mon, 21 Dec 2020 09:36:11 +0400 Subject: [PATCH] fix(frontend): add name, short_name and start_url to manifest (#424) --- public/site.webmanifest | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/public/site.webmanifest b/public/site.webmanifest index 3f47bc7cb..38af1e93f 100644 --- a/public/site.webmanifest +++ b/public/site.webmanifest @@ -1 +1,20 @@ -{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#1e2937","display":"standalone"} +{ + "name": "Overseerr", + "short_name": "Overseerr", + "start_url": "./", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#1e2937", + "display": "standalone" +}