Skip to content

Instantly share code, notes, and snippets.

@jhauge
Created December 12, 2017 11:39
Show Gist options
  • Save jhauge/1ceaf1fb00c414398d09f4837f4333b2 to your computer and use it in GitHub Desktop.
Save jhauge/1ceaf1fb00c414398d09f4837f4333b2 to your computer and use it in GitHub Desktop.
Common mimemaps for azure web apps
<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