From 854098cddaaf4b86a2878de2d230f12c7666aa34 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 13 Sep 2023 10:27:57 +0800 Subject: [PATCH] fix(webui): manifest.json would have incorrect path when running in a subfolder --- komga-webui/public/manifest.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/komga-webui/public/manifest.json b/komga-webui/public/manifest.json index 69fe9e3d3..c51d5d080 100644 --- a/komga-webui/public/manifest.json +++ b/komga-webui/public/manifest.json @@ -7,23 +7,23 @@ "theme_color": "black", "description": "Free and open source comics/mangas media server", "icons": [{ - "src": "/favicon-32x32.png", + "src": "favicon-32x32.png", "sizes": "32x32", "type": "image/png" }, { - "src": "/mstile-144x144.png", + "src": "mstile-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/apple-touch-icon.png", + "src": "apple-touch-icon.png", "sizes": "180x180", "type": "image/png" }, { - "src": "/android-chrome-192x192.png", + "src": "android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" }]