Skip to content

Instantly share code, notes, and snippets.

@andyyou
Created August 1, 2013 02:14
Show Gist options
  • Save andyyou/6127907 to your computer and use it in GitHub Desktop.
Save andyyou/6127907 to your computer and use it in GitHub Desktop.
Run woff and some resource on azure
<?xml version="1.0"?>
<!-- Web.Config Configuration File -->
<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<staticContent>
<remove fileExtension=".svg" />
<remove fileExtension=".eot" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
</staticContent>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment