diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-03-17 16:47:08 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-03-17 16:49:31 +0100 |
commit | 85c1a41021b3006f556ede209055c30e976beae1 (patch) | |
tree | 18af153a0682ace9e94a334a96caac6eb124f822 | |
parent | db08e64a02800c061f1309cdb8629f1ce5b8ec92 (diff) |
[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).
-rw-r--r-- | misc/dist/html/manifest.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dist/html/manifest.json b/misc/dist/html/manifest.json index 6e0053c23c..6fbed737c7 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", |