This is a strange thing I have noticed. I am using angular ui-grid 4.11.1.
Everything works fine except ui-grid.woff loading part.
If I use
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-grid/4.11.1/ui-grid.min.css"/>
the woff file gets downloaded from a remote location.
If I use
<link rel="stylesheet" type="text/css" href="css/ui-grid/4-11-1/ui-grid.css" />
woff file gets downloaded from the local matching.
I see from the browser debug window that in the latter case, the downloaded woff file turns into a kind of HTML file. So the ui-grid can't parse it.
I am not able to figure out what the issue is.