Skip to content

Instantly share code, notes, and snippets.

@kdimatteo
Created November 8, 2013 21:30
Show Gist options
  • Save kdimatteo/7378000 to your computer and use it in GitHub Desktop.
Save kdimatteo/7378000 to your computer and use it in GitHub Desktop.
IIS: Force IE out of compatibility mode
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=10" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment