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:;