Hello, I'm trying to upload a file with a pre-signed URL to R2 using the browser and I'm getting a 403 CORS error. Does anyone know how to solve this problem?
My CORS policy: [
{
"AllowedOrigins": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"HEAD"
],
"AllowedHeaders": [
"Content-Type"
]
}
]