Skip to content

Commit

Permalink
🐛 Fixed a bug where nested routes served with the --spa flag could no…
Browse files Browse the repository at this point in the history
…t find the js file.
  • Loading branch information
hayleigh-dot-dev committed Apr 1, 2024
1 parent b280492 commit 82d922a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion priv/index-with-lustre-ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/lustre-labs/ui/priv/styles.css"
/>
<script type="module" src="./index.mjs"></script>
<script type="module" src="/index.mjs"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion priv/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<title>🚧 {app_name}</title>

<script type="module" src="./index.mjs"></script>
<script type="module" src="/index.mjs"></script>
</head>

<body>
Expand Down

0 comments on commit 82d922a

Please sign in to comment.