Does anyone know how I can avoid creating copies when uploading images to the S3 Bucket?

I have a Strapi application connected to an Amazon S3 bucket. When I upload images, they create copies of different sizes in the bucket, which I don’t want since the bucket space fills up faster. I’ve tried adjusting it by adding some settings but none of them work.

      uploadOptions: {
        transform: false,
      },
      sizeOptimization: {
        enabled: false,
      },