Skip to content

Commit 2e8d770

Browse files
committed
Merge branch 'barahonajm-blazor_updates'
2 parents 0ec3413 + 0300658 commit 2e8d770

File tree

205 files changed

+875
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+875
-93
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dotnet/
2+
obj/
3+
bin/
4+
.vs/
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "6.0.101"
4+
}
5+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<system.webServer>
4+
<staticContent>
5+
<remove fileExtension=".blat" />
6+
<remove fileExtension=".dat" />
7+
<remove fileExtension=".dll" />
8+
<remove fileExtension=".json" />
9+
<remove fileExtension=".wasm" />
10+
<remove fileExtension=".woff" />
11+
<remove fileExtension=".woff2" />
12+
<mimeMap fileExtension=".blat" mimeType="application/octet-stream" />
13+
<mimeMap fileExtension=".dll" mimeType="application/octet-stream" />
14+
<mimeMap fileExtension=".dat" mimeType="application/octet-stream" />
15+
<mimeMap fileExtension=".json" mimeType="application/json" />
16+
<mimeMap fileExtension=".wasm" mimeType="application/wasm" />
17+
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
18+
<mimeMap fileExtension=".woff2" mimeType="application/font-woff" />
19+
</staticContent>
20+
<httpCompression>
21+
<dynamicTypes>
22+
<add mimeType="application/octet-stream" enabled="true" />
23+
<add mimeType="application/wasm" enabled="true" />
24+
</dynamicTypes>
25+
</httpCompression>
26+
<rewrite>
27+
<rules>
28+
<rule name="Serve subdir">
29+
<match url=".*" />
30+
<action type="Rewrite" url="wwwroot\{R:0}" />
31+
</rule>
32+
<rule name="SPA fallback routing" stopProcessing="true">
33+
<match url=".*" />
34+
<conditions logicalGrouping="MatchAll">
35+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
36+
</conditions>
37+
<action type="Rewrite" url="wwwroot\" />
38+
</rule>
39+
</rules>
40+
</rewrite>
41+
</system.webServer>
42+
</configuration>

0 commit comments

Comments
 (0)