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
FYI - I installed the module and imported to my threejs app running on Electronjs and getting the following error: Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' app:".
It seems to be pointing to this function as the cause:
//create lookups for private vars
function wrapper(name) {
return (new Function([
'return function '+name+'() {',
' return this._'+name,
'}'
].join('\n')))()
}
The text was updated successfully, but these errors were encountered:
FYI - I installed the module and imported to my threejs app running on Electronjs and getting the following error:
Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' app:".
It seems to be pointing to this function as the cause:
The text was updated successfully, but these errors were encountered: