diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-27 10:47:13 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-27 10:47:13 -0600 |
commit | 3a5ce2ff946422a3de63340ff113bb4ab68c8b73 (patch) | |
tree | 08fb4cf77d27207cc1644cdb6e77f31f6888842c /platform/web | |
parent | 9c300a6c057c809ce093d92fc570010dba84fc05 (diff) | |
parent | 1a082fdd8038d6a4f0f7d9c335a2c7ea440566d1 (diff) | |
download | redot-engine-3a5ce2ff946422a3de63340ff113bb4ab68c8b73.tar.gz |
Merge pull request #98901 from adamscott/add-editor-ensure-crossorigin-isolation-headers
[Web] Ensure editor crossorigin isolation headers
Diffstat (limited to 'platform/web')
-rw-r--r-- | platform/web/emscripten_helpers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/web/emscripten_helpers.py b/platform/web/emscripten_helpers.py index aca5d4ecba..6a3855da84 100644 --- a/platform/web/emscripten_helpers.py +++ b/platform/web/emscripten_helpers.py @@ -71,6 +71,7 @@ def create_template_zip(env, js, wasm, side): "___GODOT_OPT_CACHE___": json.dumps(opt_cache), "___GODOT_OFFLINE_PAGE___": "offline.html", "___GODOT_THREADS_ENABLED___": "true" if env["threads"] else "false", + "___GODOT_ENSURE_CROSSORIGIN_ISOLATION_HEADERS___": "true", } html = env.Substfile(target="#bin/godot${PROGSUFFIX}.html", source=html, SUBST_DICT=subst_dict) in_files.append(html) |