How to load wasm which uses SharedArrayBuffer in Chromium Embedded Framework application
I am using CEF v116 (C++) for a desktop application and trying to load a WebAssembly bundle. This bundle has a js wrapper layer which allocates memory using SharedArrayBuffer and exposes wasm APIs to be called by the React based application running over CEF. Currently, I am getting an error ReferenceError: SharedArrayBuffer is not defined
when loading the JS wrapper of wasm.