I'm retrieving data from the Strapi CMS that includes information about all the content in the CMS. I'm attempting to utilize this data to display an image (using a Cloudinary provider) on my Nuxt web application, but I keep encountering the following error:
Refused to load the image '(url goes here)' because it violates the Content Security Policy directive: "img-src 'self' data:".
The link to the image is included in my code, but the image is not displaying.
<img class="h-28 w-28 rounded-full border-4 border-black bg-gray-300" src="https://res.cloudinary.com/diglwbyf0/image/upload/v1680679242/20220802_161149_732ed0aa85.jpg" alt="">
How can I solve this issue?