This is the only solution that seem to work but it is still only producing “xsmall” and “thumbnail”. i need a permanent resolution that will produce all other variants(xlarge, large, medium and small) as stipulated in the code. thank you.
here is my plugin.js code
module.exports = ({ env }) => ({
// …
upload: {
config: {
provider: “cloudinary”,
providerOptions: {
cloud_name: env(“CLOUDINARY_NAME”),
api_key: env(“CLOUDINARY_KEY”),
api_secret: env(“CLOUDINARY_SECRET”),
},
breakpoints: {
xlarge: 1920,
large: 1000,
medium: 750,
small: 500,
xsmall: 64,
},
actionOptions: {
upload: {},
delete: {},
},
},
},
// …
});