[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 85c1a41021
)
This commit is contained in:
parent
5d8ae492ba
commit
3ed72c3ef4
1 changed files with 1 additions and 1 deletions
2
misc/dist/html/manifest.json
vendored
2
misc/dist/html/manifest.json
vendored
|
@ -3,7 +3,7 @@
|
||||||
"short_name": "Godot",
|
"short_name": "Godot",
|
||||||
"description": "Multi-platform 2D and 3D game engine with a feature-rich editor",
|
"description": "Multi-platform 2D and 3D game engine with a feature-rich editor",
|
||||||
"lang": "en",
|
"lang": "en",
|
||||||
"start_url": "/godot.tools.html",
|
"start_url": "./godot.tools.html",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"orientation": "landscape",
|
"orientation": "landscape",
|
||||||
"theme_color": "#478cbf",
|
"theme_color": "#478cbf",
|
||||||
|
|
Loading…
Reference in a new issue