We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea8b6a0 commit fdd3034Copy full SHA for fdd3034
src/utils/createCsp.ts
@@ -2,7 +2,7 @@ let csp = ''
2
3
// worker-src
4
csp += 'worker-src'
5
-// allow self
+// allow our own worker scripts
6
csp += " 'self'"
7
// allow Para (Capsule) worker scripts
8
csp += ' https://app.beta.usecapsule.com'
@@ -30,7 +30,7 @@ csp += ' https://app.beta.usecapsule.com'
30
csp += ' https://app.usecapsule.com'
31
32
// allow inline wasm evaluation
33
-csp += " 'wasm-unsafe-eval'"
+csp += ' wasm-unsafe-eval'
34
// INLINE SCRIPT HASHES
35
// hiddenCheckScript
36
csp += " 'sha256-UyYcl+sKCF/ROFZPHBlozJrndwfNiC5KT5ZZfup/pPc='"
0 commit comments