From 5c6ea23e0ff13a5d6b91e479e03cecb0cf90ad4f Mon Sep 17 00:00:00 2001 From: Athou Date: Mon, 21 Mar 2022 18:34:31 +0100 Subject: [PATCH] fix wrong start_url when application is running with a context path (fixes #993) --- src/main/app/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/app/manifest.json b/src/main/app/manifest.json index 2647fc2b..f08af759 100644 --- a/src/main/app/manifest.json +++ b/src/main/app/manifest.json @@ -26,6 +26,7 @@ "density": "4.0" } ], - "start_url": "/", + "scope": ".", + "start_url": "./", "display": "standalone" }