Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

web.config 768B

1234567891011121314151617181920212223
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <system.webServer>
  4. <staticContent>
  5. <remove fileExtension=".webm" />
  6. <mimeMap fileExtension=".webm" mimeType="video/webm" />
  7. <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
  8. </staticContent>
  9. <rewrite>
  10. <rules>
  11. <rule name="React Routes" stopProcessing="true">
  12. <match url=".*" />
  13. <conditions logicalGrouping="MatchAll">
  14. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  15. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  16. <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
  17. </conditions>
  18. <action type="Rewrite" url="/" />
  19. </rule>
  20. </rules>
  21. </rewrite>
  22. </system.webServer>
  23. </configuration>