diff --git a/server/utils/s3.ts b/server/utils/s3.ts index 4a911debf..160691db5 100644 --- a/server/utils/s3.ts +++ b/server/utils/s3.ts @@ -226,6 +226,7 @@ export const getSignedUrl = async (key: string, expiresInMs = 60) => { Bucket: AWS_S3_UPLOAD_BUCKET_NAME, Key: key, Expires: expiresInMs, + ResponseContentDisposition: "attachment", }; const url = isDocker