You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more information on reading and writing files check out the [Emscripten File System API](https://emscripten.org/docs/api_reference/Filesystem-API.html).
74
74
75
+
### SharedArrayBuffer Errors
76
+
77
+
This project uses SharedArrayBuffer to manage threading. Currently most browsers will only enable SharedArrayBuffer when the following headers are sent along side the JavaScript/WASM:
78
+
```
79
+
Cross-Origin-Opener-Policy: same-origin
80
+
Cross-Origin-Embedder-Policy: require-corp
81
+
```
82
+
83
+
For more information check out [MDN SharedArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer#security_requirements).
0 commit comments