Skip to content

Commit

Permalink
add rewrite rule for manifest files for js webapps (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbrown authored May 17, 2021
1 parent 42f18d0 commit 7f90822
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
</handlers>
<rewrite>
<rules>
<!-- Make sure skill manifest files are served by the app's static path in wwwroot/ -->
<rule name="manifests">
<match url="manifests/*" />
<action type="Rewrite" url="index.js" />
</rule>
<!-- All other URLs are mapped to the node.js site entry point -->
<rule name="DynamicContent">
<conditions>
Expand Down

0 comments on commit 7f90822

Please sign in to comment.