Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chadokruse committed Dec 3, 2024
1 parent 5a65f7e commit 39a466d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions apps/web/svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ const config = {
csp: {
mode: 'auto',
directives: {
'script-src': ['self', 'https://static.cloudflareinsights.com', 'https://docs.google.com/', 'https://cdn.iubenda.com', 'unsafe-eval'], // The unsafe-eval requirement is for Zaraz, a known CF issue required for now - Hashes will be added automatically
'script-src': [
'self',
'https://static.cloudflareinsights.com',
'https://docs.google.com/',
'https://cdn.iubenda.com',
'unsafe-eval',
], // The unsafe-eval requirement is for Zaraz, a known CF issue required for now - Hashes will be added automatically
'style-src': ['self', 'unsafe-inline', 'https://cdn.iubenda.com'], // Include 'unsafe-inline' for inline styles
'frame-src': ['https://www.iubenda.com', 'https://docs.google.com/'],
'frame-ancestors': ['https://docs.google.com/'],
Expand All @@ -43,7 +49,6 @@ const config = {
'object-src': ['none'],
'base-uri': ['none'],
'form-action': ['self'],

},
},
},
Expand Down

0 comments on commit 39a466d

Please sign in to comment.