0.0.2 • Published 4 years ago

strapi-provider-upload-cloudinary-resize v0.0.2

Weekly downloads
10
License
SEE LICENSE IN LI...
Repository
github
Last release
4 years ago

strapi-provider-upload-cloudinary-resize

Configurations

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: 'cloudinary-resize',
    providerOptions: {
      cloud_name: env('CLOUDINARY_NAME'),
      api_key: env('CLOUDINARY_KEY'),
      api_secret: env('CLOUDINARY_SECRET'),
      optimize: {
        width: 750,
        height: 750,
        quality: 75
      },
    },
  },
  // ...
});

Resources

Links