diff --git a/src/utils/csp.ts b/src/utils/csp.ts index ab0908e1..2caa8226 100644 --- a/src/utils/csp.ts +++ b/src/utils/csp.ts @@ -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);