keystonejs-contrib / k6-contrib

Keyston-6 contrib
MIT License
35 stars 18 forks source link

Sizes not working #31

Closed jaredcowoCS closed 1 month ago

jaredcowoCS commented 2 years ago

Currently, I only need to persist the large file. On the docs it mentions that in order to not generate the small and medium sizes, the value for those need to be set to 0, which is what I am doing.

Here is a snippet of my code.

export const s3Config: S3ImagesConfig = {
  bucket: process.env.S3_BUCKET as string,
  folder: process.env.S3_PATH,
  s3Options: {
    accessKeyId: process.env.S3_ACCESS_KEY_ID,
    secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
    region: process.env.S3_REGION,
  },
  sizes: { sm: 0, md: 0 },
  uploadParams() {
    return {
      ACL: "public-read",
    };
  },
};
gautamsi commented 2 years ago

I am going to check this soon. PR welcome in the mean time.

gautamsi commented 1 month ago

with release of 6.1.0 sizes should be working as expected.