carlosmunozledesma
10/4/2016 - 11:30 AM

When in console navegator appear: "Failed to load resource: the server responded with a status of 404 (Not Found)" is because IIS does not k

When in console navegator appear: "Failed to load resource: the server responded with a status of 404 (Not Found)" is because IIS does not know about woff and woff2 file mime types. We add in web.config

</modules>
      <staticContent>
        <remove fileExtension=".woff" />
        <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
        <remove fileExtension=".woff2" />
        <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
      </staticContent>