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
I want to run my project on environment what setting CSP block 'wasm-unsafe-eval',
and I can't set DYNAMIC_EXECUTION = 0 in my case.
so I refer to the PR to modify "emscripten” builded JS code.
but the "craftInvokerFunction" was still use eval(new Function).
and I just modify craftInvokerFunction refer to "DYNAMIC_EXECUTION == 0".
In my case it working fine.
(it can run on "wasm-unsafe-eval")
I don't think it's a good solution. so I need some suggest to deal with the CSP "wasm-unsafe-eval" block question.
even it can run on CSP block 'unsafe-eval'.
thank you so mush~
The text was updated successfully, but these errors were encountered:
I want to run my project on environment what setting CSP block 'wasm-unsafe-eval',
and I can't set DYNAMIC_EXECUTION = 0 in my case.
so I refer to the PR to modify "emscripten” builded JS code.
but the "craftInvokerFunction" was still use eval(new Function).
and I just modify craftInvokerFunction refer to "DYNAMIC_EXECUTION == 0".
In my case it working fine.
(it can run on "wasm-unsafe-eval")
I don't think it's a good solution. so I need some suggest to deal with the CSP "wasm-unsafe-eval" block question.
even it can run on CSP block 'unsafe-eval'.
thank you so mush~
The text was updated successfully, but these errors were encountered: