feat: add SVG favicon with lowercase 'b' using site font; configure head to use it with .ico fallback

This commit is contained in:
2025-08-16 09:50:31 -06:00
parent eff9aa55cf
commit 738f5a348a
2 changed files with 21 additions and 1 deletions

View File

@@ -9,7 +9,10 @@ export default defineNuxtConfig({
},
app: {
head: {
link: []
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'alternate icon', type: 'image/x-icon', href: '/favicon.ico' }
]
}
}
})