3.3.2 • Published 3 years ago

@boyd002/strapi-provider-upload-aws-s3-with-webp v3.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

strapi-provider-upload-aws-s3-with-webp

Creates an additional image in .webp format on upload

Configurations

Your configuration is passed down to the provider. (e.g: new AWS.S3(config)). You can see the complete list of options here

See the using a provider documentation for information on installing and using a provider. And see the environment variables for setting and using environment variables in your configs.

Example

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    provider: "aws-s3",
    providerOptions: {
      accessKeyId: env("AWS_ACCESS_KEY_ID"),
      secretAccessKey: env("AWS_ACCESS_SECRET"),
      region: env("AWS_REGION"),
      params: {
        Bucket: env("AWS_BUCKET"),
      },
    },
  },
  // ...
});

Resources

Links

3.3.1

3 years ago

3.3.0

3 years ago

3.2.0

3 years ago

3.3.2

3 years ago

3.1.7

3 years ago

3.1.6

3 years ago

3.1.5

3 years ago