I'm using bootstrap with my web application. Everything is working locally, no errors. The application is hosted on Azure where there are also no errors.
My problem is that the web site is not displaying the correct font on Azure which is supposed to be Lato; it's showing Arial instead. I'm using the same browser etc.
This is how boostrap loads the fonts from google api:
@import url("//fonts.googleapis.com/css?family=Lato:400,700,400italic");
So it's not an https issue.
I've looked everywhere and can't find a fix. Help?
Edit:
Also included these in web.config:
<staticContent>
<mimeMap fileExtension="woff" mimeType="application/font-woff" />
<mimeMap fileExtension="woff2" mimeType="application/font-woff2" />
</staticContent>
Fixed:
The error was because of the order of my css bundle. The solution is explained here: Minification failed. Returning unminified contents
I managed to identify the problem by seeing that the font wasn't loaded under Console > Network in Chrome which led me to find the minimize-error.