mirror of https://github.com/godotengine/godot
[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).
This commit is contained in:
parent
db08e64a02
commit
85c1a41021
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue