Skip to content

Instantly share code, notes, and snippets.

@shammelburg
Created February 16, 2016 11:22
Show Gist options
  • Select an option

  • Save shammelburg/2b0e9aebcadb974ef66e to your computer and use it in GitHub Desktop.

Select an option

Save shammelburg/2b0e9aebcadb974ef66e to your computer and use it in GitHub Desktop.
woff-woff2 IIS Browser Fix
<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