CORS issues when downloading files from R2
I've configured my files from R2 to be served from:
assets.mydomain.com
So, fetching and displaying images on my site works as expected, for example,
assets.mydomain.com/some-random-id.png
I've added a download button on each image, but I can't get past the CORS errors.
I've followed almost every solution I found on the internet, including adding transform headers rules, but still no luck.
I've set up CORS rules on the bucket, but nothing!
Does anyone here have experience with this?
Help would be appreciated!1 Reply
can you send a snipped copy of your cors?
so:
1. Go to Rules → Transform Rules in the Cloudflare panel.
2. Add a new transform rule with these conditions:
- When incoming requests match: Specify your domain (e.g. assets.mydomain.com) and path (e.g. *.png).
3. Action: Modify Response Header:
- Set Header:
- Access-Control-Allow-Origin: * or https://assets.mydomain.com
- Access-Control-Allow-Methods: GET, HEAD
- Access-Control-Allow-Headers: *