After upgrading kendo we are getting the following error when accessing kendo.common.css cross-domain.
Failed to load resource: the server responded with a status of 401 (Unauthorized)
http://dev-sfri/Content/kendo/fonts/glyphs/WebComponentsIcons.woff?gedxeo
http://dev-sfri/Content/kendo/fonts/glyphs/WebComponentsIcons.ttf?gedxeo
At first after upgrading we had a CORS policy error which we fixed in the web.config by adding an origin header
<add name="Access-Control-Allow-Origin" value="*" />
But now I'm not sure how to authorize the font request.
Any ideas?