We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3891eb7 commit c1807cbCopy full SHA for c1807cb
src/utils/createCsp.ts
@@ -3,18 +3,17 @@ let csp = ''
3
// worker-src
4
csp += 'worker-src'
5
// allow our own worker scripts
6
-csp += " 'self'"
+csp += " 'self' blob:"
7
// allow Para (Capsule) worker scripts
8
csp += ' https://app.beta.usecapsule.com'
9
csp += ' https://app.usecapsule.com'
10
-csp += ' blob:'
11
// end worker-src
12
csp += ';'
13
14
// script-src
15
csp += ' script-src'
16
// allow self
17
18
// allow plausible script
19
csp += ' plausible.io'
20
// allow cloudflare analytics script
0 commit comments