Skip to content

Commit

Permalink
add dist directory + iis configuraiton
Browse files Browse the repository at this point in the history
  • Loading branch information
lscalese committed Nov 5, 2023
1 parent 6a2cc41 commit 1a17832
Show file tree
Hide file tree
Showing 12 changed files with 513 additions and 0 deletions.
465 changes: 465 additions & 0 deletions dist/journal-indexer-ui/3rdpartylicenses.txt

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions dist/journal-indexer-ui/bootstrap-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/journal-indexer-ui/favicon.ico
Binary file not shown.
16 changes: 16 additions & 0 deletions dist/journal-indexer-ui/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/journal-indexer-ui/main.cb68f91dee7edc58.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/journal-indexer-ui/polyfills.b8f96787f6348c7c.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/journal-indexer-ui/runtime.4633d8931c348719.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/journal-indexer-ui/scripts.d8fd13b4dc25067b.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/journal-indexer-ui/styles.12bac911bb2e7a3e.css

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions dist/journal-indexer-ui/web.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<webSocket enabled="true" />
<rewrite>
<rules>
<rule name="Angular Routes" 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="./index.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

0 comments on commit 1a17832

Please sign in to comment.