Add public skeleton

This commit is contained in:
2025-09-17 12:15:29 +07:00
parent f8846d4bcb
commit b51e4a8131
3 changed files with 19 additions and 0 deletions

18
public/web.config Normal file
View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="reactViteSypiu">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>