My images from cloudinary are not uploading to the front-end side to localohost 3000. Not visible for the client but are accessible in console.log.
plugins.js
module.exports = ({ env }) => ({
** // …**
** upload: {**
** config: {**
** provider: ‘cloudinary’,**
** providerOptions: {**
** cloud_name: env(‘CLOUDINARY_NAME’),**
** api_key: env(‘CLOUDINARY_KEY’),**
** api_secret: env(‘CLOUDINARY_SECRET’),**
** },**
** actionOptions: {**
** upload: {},**
** delete: {},**
** },**
** },**
** },**
** // …**
});
The rest of information is retrieved from the server successfully. ( Product price, description etc)
I keep receiving incorrect URL for the dynamic data which is:
http://localhost:1337https://res.cloudinary.com/devqsoqp4/image/upload/v1678231275/miracle_serum_80c6ec149a.png
What do I need to change in plugins.js file ?
Thanks in advance for help !