Created
February 16, 2016 11:22
-
-
Save shammelburg/2b0e9aebcadb974ef66e to your computer and use it in GitHub Desktop.
woff-woff2 IIS Browser Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.webServer> | |
| <staticContent> | |
| <remove fileExtension=".woff" /> | |
| <!-- In case IIS already has this mime type --> | |
| <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" /> | |
| <remove fileExtension=".woff2" /> | |
| <!-- In case IIS already has this mime type --> | |
| <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" /> | |
| </staticContent> | |
| </system.webServer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment