Skip to content

Instantly share code, notes, and snippets.

@l0ll098
Last active May 8, 2023 00:56
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save l0ll098/9388c6c3808e1019beddd4bb8012f3c4 to your computer and use it in GitHub Desktop.
Save l0ll098/9388c6c3808e1019beddd4bb8012f3c4 to your computer and use it in GitHub Desktop.
Serve JSON files Azure WebSites
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".json"/>
<mimeMap fileExtension=".json" mimeType="application/json"/>
</staticContent>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment