We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f03eb commit fc6a1e6Copy full SHA for fc6a1e6
public/web.config
@@ -3,6 +3,13 @@
3
<system.webServer>
4
<rewrite>
5
<rules>
6
+ <rule name="Directory to Index" stopProcessing="true">
7
+ <match url="(.*[^/])$" />
8
+ <conditions>
9
+ <add input="{REQUEST_FILENAME}" matchType="IsDirectory" />
10
+ </conditions>
11
+ <action type="Rewrite" url="{R:1}/index.html" />
12
+ </rule>
13
<rule name="Web Components Routes" stopProcessing="true">
14
<match url=".*" />
15
<conditions logicalGrouping="MatchAll">
0 commit comments