test(iis test): testing to put lst in iis to get ssl :D

This commit is contained in:
2025-06-05 01:26:47 -05:00
parent 6651f83da8
commit a89087b7fa

15
frontend/web.config Normal file
View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Logistics Support Tool" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions>
<action type="Rewrite" url="./dist/index.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>