Skip to content

Commit

Permalink
Remove leading slash from framework
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Sep 6, 2024
1 parent b7ebeb0 commit 2892e0f
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions LiftLog.Maui/wwwroot/index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>LiftLog.Web</title>
<base href="/"/>
<link href="_content/LiftLog.Ui/css/app.css" rel="stylesheet"/>
<link href="_content/LiftLog.Ui/app.min.css" rel="stylesheet"/>
</head>
<base href="/" />
<link href="_content/LiftLog.Ui/css/app.css" rel="stylesheet" />
<link href="_content/LiftLog.Ui/app.min.css" rel="stylesheet" />
</head>

<body>
<div id="app" class="flex flex-col justify-center h-full text-center select-none"><span>LiftLog</span></div>
<body>
<div id="app" class="flex flex-col justify-center h-full text-center select-none"><span>LiftLog</span></div>

<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="/_framework/blazor.webview.js" autostart="false"></script>
<script src="_content/LiftLog.Ui/app-utils.js"></script>
<script src="_content/LiftLog.Ui/bundle.js"></script>
</body>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webview.js" autostart="false"></script>
<script src="_content/LiftLog.Ui/app-utils.js"></script>
<script src="_content/LiftLog.Ui/bundle.js"></script>
</body>
</html>

0 comments on commit 2892e0f

Please sign in to comment.