Adding to my web.config
<system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="application/json" /> </staticContent> </system.webServer>
Allows my application to run on Azure, but will crash my remote IIS server because it is already on. Removing the remote IIS mimeType in this particular case is impractical. I end up using a different web.config
Is there another mechanism with which I can configure mimeType Azure IIS so that I don't have this problematic web.config?
I need a deployment package that will run on Azure and not Azure.
Pablo
source share