const response = await fetch(signedUrl, {
method: "PUT",
headers: {
"x-amz-meta-name": "name",
"Content-Length": String(fileSize),
"Content-Type": fileType,
},
body: file,
});
const response = await fetch(signedUrl, {
method: "PUT",
headers: {
"x-amz-meta-name": "name",
"Content-Length": String(fileSize),
"Content-Type": fileType,
},
body: file,
});