Files
365devnet/src/components/Favicons.astro
becarta d6a7cd0384 a
2025-02-04 17:11:22 +01:00

9 lines
296 B
Plaintext

---
import favIcon from '~/assets/favicons/fav.ico';
import favIconSvg from '~/assets/favicons/fav.webp';
---
<link rel="shortcut icon" type="image/webp" href={favIcon} />
<link rel="icon" type="image/webp" href={favIconSvg.src} />
<link rel="mask-icon" href={favIconSvg.src} color="#8D46E7" />