CORS Policy Example
Replace values in "AllowedOrigins" with your website domain. This will allow fonts to be loaded via the CDN.
This policy only needs to be applied to the public bucket containing static library assets (i.e. FontAwesome).
Example CORS policy:
[
{
"AllowedHeaders": [],
"AllowedMethods": [
"POST",
"GET",
"PUT"
],
"AllowedOrigins": [
"https://test.desertedchateau.com/"
],
"ExposeHeaders": []
}
]