Skip to main content

Godot - Resolving Issues with Web Programs Not Running

·51 words
icysamon
Author
icysamon
Electronics & Creator
Table of Contents

Errors
#

The following features required to run Godot projects on the Web are missing:
Cross Origin Isolation - Check web server configuration (send correct headers)
SharedArrayBuffer - Check web server configuration (send correct headers)

Solution
#

Add the following code to .htaccess.

Header set Cross-Origin-Embedder-Policy “require-corp”
Header set Cross-Origin-Opener-Policy “same-origin”