-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Bun has an option to upload pre-encoded data: https://bun.com/blog/bun-v1.3.7#s3-contentencoding-option
const file = s3.file("my-bucket/data.json.gz");
await file.write(compressedData, { contentEncoding: "gzip" });
const bucket = s3.bucket("my-bucket");
await bucket.write("data.json.br", brotliData, { contentEncoding: "br" });Maybe we could support that, too.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request