Hi Jeremy,
When I pasted the rules from here (https://www.pcibex.net/wiki/zipped-resources/#uploadingandgrantingaccesstozipfiles, if you’re using an Amazon S3 bucket), I got the error massage of “The CORS configuration must be written in valid JSON.
API response: Expected params.CORSConfiguration.CORSRules to be an Array”.
So I change to the following, which has worked for me in the past for another project. However, my experiment (https://farm.pcibex.net/r/NdMlhm/) would stuck on “Please wait while the resources are preloading This may take up to 1min”. I do have the bucket permission access setting as “public”. Am I missing anything else?
Thanks,
Peiyao
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET"
],
"AllowedOrigins": [
"https://farm.pcibex.net"
],
"ExposeHeaders": []
}
]