Skip to content

Commit

Permalink
add slash in favicon path
Browse files Browse the repository at this point in the history
  • Loading branch information
frascu authored Nov 15, 2022
1 parent 33a3b56 commit 7fb9c67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/atoms/ExtraMetaTags.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
import { SITE } from '~/config.mjs';
---

<link rel="shortcut icon" href={`${SITE.basePathname}favicon.ico`} />
<link rel="icon" type="image/svg+xml" href={`${SITE.basePathname}favicon.svg`} />
<link rel="mask-icon" href={`${SITE.basePathname}favicon.svg`} color="#8D46E7" />
<link rel="shortcut icon" href={`${SITE.basePathname}/favicon.ico`} />
<link rel="icon" type="image/svg+xml" href={`${SITE.basePathname}/favicon.svg`} />
<link rel="mask-icon" href={`${SITE.basePathname}/favicon.svg`} color="#8D46E7" />

0 comments on commit 7fb9c67

Please sign in to comment.