Skip to content

Commit

Permalink
Attempt path issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xzippyzachx committed Apr 18, 2024
1 parent 486ab20 commit 2b8203b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%

<base href="%sveltekit.assets%"/>
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
Expand Down
3 changes: 2 additions & 1 deletion src/routes/header.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script>
import { base } from '$app/paths'
import { page } from '$app/stores'
import navMode from '$lib/navMode'
Expand Down Expand Up @@ -41,7 +42,7 @@
<div class="flex {navColor()} align-middle h-auto">
<div class="flex lg:w-1/6 w-1/4 h-16 justify-evenly">
<div class="h-full px-2 flex">
<img src="/assets/shib.png" alt="" class="my-auto lg:h-3/5 h-4/5 object-contain"/>
<img src="{base}/assets/shib.png" alt="" class="my-auto lg:h-3/5 h-4/5 object-contain"/>
</div>
<div class="h-full px-2 w-16">
</div>
Expand Down

0 comments on commit 2b8203b

Please sign in to comment.