Add favicons to assets folder

This commit is contained in:
prototypa
2023-07-27 07:25:03 -04:00
parent d402712603
commit 006c332f85
3 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,8 @@
---
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" />