In Firefox I am getting the following error:
Content Security Policy: The page’s settings blocked the loading of a resource at data: (“media-src”).
I am unsure why I would get this error as I host no video or audio tags.
<add name="Content-Security-Policy" value="default-src 'self'; connect-src 'self'; font-src 'self'; frame-src 'self'; img-src 'self'; media-src 'self'; object-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline';"/>
How can you find the source of the blocked resource in Firefox?
Any ideas why this would occur when the site has no external resources?
SOLUTION
I needed to include the data:
attribute.
media-src 'self' data:;
question from:
https://stackoverflow.com/questions/65941453/content-security-policy-determine-source-of-blocked-resource 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…