add slash in favicon path

This commit is contained in:
Francesco Scuccimarri
2022-11-15 09:08:50 +01:00
committed by GitHub
parent 33a3b562ce
commit 7fb9c67ab2

View File

@ -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" />