@dargmuesli/nuxt-vio 13.1.15 → 13.1.17

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -116,5 +116,5 @@
116
116
  "start:static": "serve .playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
117
117
  },
118
118
  "type": "module",
119
- "version": "13.1.15"
119
+ "version": "13.1.17"
120
120
  }
@@ -18,7 +18,10 @@ export const GET_CSP = (siteUrl: string) =>
18
18
  ...(process.env.NODE_ENV === 'production'
19
19
  ? {
20
20
  'connect-src': ['https://cloudflareinsights.com'],
21
- 'script-src-elem': ['https://static.cloudflareinsights.com'],
21
+ 'script-src-elem': [
22
+ 'https://static.cloudflareinsights.com',
23
+ `${siteUrl}/cdn-cgi/scripts/`,
24
+ ],
22
25
  }
23
26
  : {}),
24
27
  },