Skip to content

Commit

Permalink
fix: csp
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Mar 22, 2024
1 parent 8a670ea commit 96be4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/csp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function useCsp(): void {

csp.directives.scriptSrcElem.push(SELF, UNSAFE_INLINE);
csp.directives.styleSrc.push(SELF);
csp.directives.styleSrcElem.push(SELF);
csp.directives.styleSrcElem.push(SELF, UNSAFE_INLINE);
csp.directives.imgSrc.push(SELF);
csp.directives.connectSrc.push(SELF);
csp.directives.manifestSrc.push(SELF);
Expand Down

0 comments on commit 96be4fb

Please sign in to comment.