Fix problem loading favicon.svg

This commit is contained in:
prototypa
2023-08-06 23:53:23 -04:00
parent 259580062a
commit 5ee7bd2a4f

View File

@ -1,8 +1,9 @@
---
import favIcon from '~/assets/favicons/favicon.ico';
import favIconSvg from '~/assets/favicons/favicon.svg';
---
<link rel="shortcut icon" href={favIcon} />
<link rel="icon" type="image/svg+xml" href={favIcon} />
<link rel="mask-icon" href={String(favIconSvg)} color="#8D46E7" />
<link rel="icon" type="image/svg+xml" href={favIconSvg.src} />
<link rel="mask-icon" href={favIconSvg.src} color="#8D46E7" />