diff --git a/packages/backend/src/functions/storage.ts b/packages/backend/src/functions/storage.ts index 054a9af1..56420224 100644 --- a/packages/backend/src/functions/storage.ts +++ b/packages/backend/src/functions/storage.ts @@ -193,8 +193,10 @@ export const createBucket = functions CORSConfiguration: { CORSRules: [ { - AllowedMethods: ["GET"], - AllowedOrigins: ["*"] + AllowedMethods: ["GET", "PUT"], + AllowedOrigins: ["*"], + ExposeHeaders: ["ETag", "Content-Length"], + AllowedHeaders: ["*"], } ] }