I ran into Same issue even after setting up CORS currectly adding Cache-controle
and pragma
in the headers request fixed it for me
const response = await fetch(`s3bucketurl`, {
headers: {
"Cache-Control": "no-cache",
Pragma: "no-cache",
}
});