so we are using an S3 bucket and when try and get a resource I get in Chrome:
Referrer Policy: strict-origin-when-cross-origin
I have already applied to S3 bucket:
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"POST"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [],
"MaxAgeSeconds": 3000
}
]
and also applied to CloudFront:
and still no luck, keep getting the error below. I am trying to basically disable CORS and allow any origin.
Thank you.