From 3cc963cbfab6bc032f8bf38fc51cfbbecddb681d Mon Sep 17 00:00:00 2001 From: Junior Date: Wed, 14 Aug 2024 11:22:30 -0400 Subject: [PATCH] Fix the scope path for the main app --- manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 3e7503e..bc36d15 100644 --- a/manifest.json +++ b/manifest.json @@ -3,17 +3,17 @@ "description": "JAJ Comics: So many comics, so little time!", "icons": [ { - "src": "/img/comics_512.png", + "src": "img/comics_512.png", "type": "image/png", "sizes": "512x512" }, { - "src": "/img/comics_192.png", + "src": "img/comics_192.png", "type": "image/png", "sizes": "192x192" } ], "start_url": "index.php", "display": "fullscreen", - "scope": "/" + "scope": "/comics/" }