Skip to content

Commit

Permalink
fix: basepath issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Chronostasys committed Jul 11, 2024
1 parent e0ef8ce commit 5499304
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CropperSampleV6/Pages/CropperExample.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@page "/Blazor.Cropper/"
@page "/"
@inject IJSRuntime JSRuntime;

<h1>Cropper</h1>
Expand Down
2 changes: 1 addition & 1 deletion CropperSampleV6/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<ul class="nav flex-column">
<li class="nav-item px-3">
<NavLink class="nav-link" href="Blazor.Cropper" Match="NavLinkMatch.All">
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
<span class="oi oi-home" aria-hidden="true"></span> Cropper
</NavLink>
</li>
Expand Down
2 changes: 1 addition & 1 deletion CropperSampleV6/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>CropperSampleV6</title>
<base href="/" />
<base href="/Blazor.Cropper/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link href="CropperSampleV6.styles.css" rel="stylesheet" />
Expand Down

0 comments on commit 5499304

Please sign in to comment.