I’m using a Windows IIS server and it doesn’t run! What can I do?
You’ll need to add the correct MIME types in your web.config file. Most probably the missed type is related to JSON. You can add it like this in your config:
<configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="application/json" /> </staticContent> </system.webServer> </configuration>
Save it as web.config in your root and restart the server. Add any other missing MIME type if you still have issues.