Fix issue with json files being serve with the wrong mimetype.

This commit is contained in:
2025-04-18 04:28:16 -04:00
parent d6c3bd7fa4
commit b3bdd928b1

8
frontend/web.config Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>
</configuration>