Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 5b4691d

Browse files
committed
Fix default web.config
1 parent f4de5d8 commit 5b4691d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

core/src/web.config

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121
</files>
2222
</defaultDocument>
2323
<staticContent>
24-
<!-- CHECK IF NOT ALREADY DEFINED IN YOUR DEFAULTS IIS CONFIGS -->
25-
<mimeMap fileExtension=".woff2" mimeType="application/x-woff" />
26-
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
24+
<remove fileExtension=".woff2" />
25+
<mimeMap fileExtension=".woff2" mimeType="application/x-woff" />
26+
<remove fileExtension=".woff" />
27+
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
28+
<remove fileExtension=".json" />
2729
<mimeMap fileExtension=".json" mimeType="application/json" />
2830
</staticContent>
2931
</system.webServer>
30-
</configuration>
32+
</configuration>

0 commit comments

Comments
 (0)