How to add "Content-Encoding: br" to Cloudflare R2 Storage
I'm trying to serve a Unity WebGL Build compressed to Brotli from R2 Storage but I have no idea how to set the encoding to br. Here is my current CORS Policy:

[
{
"AllowedOrigins": [
"*"
],
"AllowedMethods": [
"GET",
"HEAD"
],
"AllowedHeaders": [
"*"
],
"ExposeHeaders": [
"*"
],
"MaxAgeSeconds": 3600
}
]