From 3ed72c3ef4eb74ab828c066d8763e25efbdb5e75 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Wed, 17 Mar 2021 16:47:08 +0100 Subject: [PATCH] [HTML5] Fix bogus Web Editor manifest. The `start_url` in the PWA manifest.json must be relative for it to work in subfolders (like in the official Web Editor page). (cherry picked from commit 85c1a41021b3006f556ede209055c30e976beae1) --- misc/dist/html/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dist/html/manifest.json b/misc/dist/html/manifest.json index 6e0053c23c5..6fbed737c7a 100644 --- a/misc/dist/html/manifest.json +++ b/misc/dist/html/manifest.json @@ -3,7 +3,7 @@ "short_name": "Godot", "description": "Multi-platform 2D and 3D game engine with a feature-rich editor", "lang": "en", - "start_url": "/godot.tools.html", + "start_url": "./godot.tools.html", "display": "standalone", "orientation": "landscape", "theme_color": "#478cbf",