With a recent upgrade of Chrome, I get the following error:
Font from origin 'http://storage.googleapis.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://example.com' is therefore not allowed access.
when calling the following from my html template in Django:
<link title="fonts" href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet" type="text/css">
I realise this is a CORS issue (it works perfectly on Safari which does not enforce CORS on fonts) so have installed django-cors-headers, and allowed all hosts but the error persists. This is my only CORS issue and rather frustrating as the app has worked perfectly on Safari and Chrome (the only browsers that we use) for months!
Any help would be most appreciated.