Skip to content

Instantly share code, notes, and snippets.

@Shaxadhere
Created August 9, 2022 08:39
Show Gist options
  • Save Shaxadhere/c127bda556bbb05392ab19060ec4229d to your computer and use it in GitHub Desktop.
Save Shaxadhere/c127bda556bbb05392ab19060ec4229d to your computer and use it in GitHub Desktop.
azure react app configuration file
<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="React Routes" stopProcessing="true">
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment