I’m trying to work my way through implementing csp. Could someone explain to me why I get this:
The page’s settings would block an inline style (style-src-elem) from being applied because it violates the following directive: “style-src *”
When I use this directive:
CSP_STYLE_SRC = (‘*’)
?
I thought this would let anything through, but apparently it does not. I don’t know how I can begin to filter things when I can’t even get a wildcard to work. Do I not understand how it works, or am I getting syntax wrong?
Thanks