Skip to content

Commit

Permalink
Fix casing as it seems to matter when deployed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Layoric committed Oct 31, 2023
1 parent f79b6b0 commit dbfb875
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MyApp/Pages/Counter.razor
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="mt-8 mb-20 mx-auto max-w-fit">
<h1 class="@Css.H1">Counter</h1>

<div data-component="Pages/Counter.mjs"></div>
<div data-component="pages/Counter.mjs"></div>

<div>
<div class="mt-8 flex justify-center gap-x-4">
Expand Down
2 changes: 1 addition & 1 deletion MyApp/Pages/Secure/Bookings.razor
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<h1 class="mb-4 @Css.H1">Bookings AutoQueryGrid</h1>

<div id="bookings" data-component="Pages/Bookings.mjs"></div>
<div id="bookings" data-component="pages/Bookings.mjs"></div>

<div>
<div class="mt-5 flex justify-center gap-x-4">
Expand Down
2 changes: 1 addition & 1 deletion MyApp/_posts/2023-01-10_vs.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ If you'd prefer to use Visual Studio for front-end development we recommend movi
Dev UX, e.g:

```html
<script type="module" src="./Pages/SignIn.mjs"></script>
<script type="module" src="./pages/SignIn.mjs"></script>
```

### Deploying to Production
Expand Down

0 comments on commit dbfb875

Please sign in to comment.