Created
December 12, 2017 11:39
-
-
Save jhauge/1ceaf1fb00c414398d09f4837f4333b2 to your computer and use it in GitHub Desktop.
Common mimemaps for azure web apps
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
<configuration> | |
<system.webServer> | |
<staticContent> | |
<remove fileExtension=".svg"/> | |
<mimeMap fileExtension=".svg" mimeType="image/svg+xml"/> | |
<remove fileExtension=".json"/> | |
<mimeMap fileExtension=".json" mimeType="application/json" /> | |
<remove fileExtension="woff"/> | |
<mimeMap fileExtension="woff" mimeType="font/woff"/> | |
<remove fileExtension="woff2"/> | |
<mimeMap fileExtension="woff2" mimeType="font/woff2"/> | |
</staticContent> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment