I have an AngularJS Website, which works perfectly in every browser. But in Internet Explorer (tested with version 11) CSS is not loaded at all.
Error Code: SEC7113
Error Message: "CSS was ignored due to mime type mismatch"
Also check here: http://msdn.microsoft.com/en-us/library/hh180764(v=vs.85).aspx
This is how I include my CSS (right before ):
<link rel="stylesheet" type="text/css" href="css/app.css">
Also This is my Doctype:
<!doctype html>
<html ng-app="app">
I know for sure (100%), that it worked in Internet Explorer few weeks ago, since I tested the performance in different browser. Since then, the css changed a lot. But not the way I include the CSS.
Does anybody know, what could be the problem here? Thank you very much!