I have a website hosted on App Engine (python2.7) and a linked blogger on the subdomain. I use shared resources on the blogger account. Specifically, I share icon fonts whic
If your assets are stored in Google Cloud Storage, you can set the headers by following this guide: https://cloud.google.com/storage/docs/cross-origin
Added the following handler to my app.yaml on app engine and the import now works fine in all browsers.
handlers:
- url: /fonts
static_dir: fonts
http_headers:
Access-Control-Allow-Origin: "*"