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
As mentioned in Morglod/tseep#23 I encounter a runtime error which comes from the tseep library
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' 'wasm-unsafe-eval'".
at bakeCollection (bake-collection.ts:116:34)
The text was updated successfully, but these errors were encountered:
Change is pretty simple (fallback may take more bundle size, but safe version is still very fast):
// fromimport{EventEmitter}from"tseep";// toimport{EventEmitter}from"tseep/lib/ee-safe";// no-eval versionimport{EventEmitter}from"tseep/lib/fallback";// auto switch if eval is restricted
As mentioned in Morglod/tseep#23 I encounter a runtime error which comes from the
tseep
libraryThe text was updated successfully, but these errors were encountered: