[Vuejs]-How do you render an image (from cloudinary) from strapi using NuxtJS?

0👍

You can add a CSP rule to allow images from Cloudinary: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP

The CSP rule currently only allows images to be loaded from your domain and from inline images.

The first thing I would look at is who is setting the CSP rule for your project? Someone is setting the rule "img-src 'self' data:".

Leave a comment