add favicons

This commit is contained in:
Michael Dausmann
2024-02-17 11:51:36 +11:00
parent 23c248a08b
commit 8a801b1696
10 changed files with 44 additions and 4 deletions

View File

@@ -21,7 +21,28 @@ export default defineNuxtConfig({
htmlAttrs: {
lang: 'en'
},
title: 'SupaNuxt SaaS'
title: 'SupaNuxt SaaS',
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/favicon-32x32.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/favicon-16x16.png'
},
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/apple-touch-icon.png'
},
{ rel: 'manifest', href: '/site.webmanifest' }
]
}
},
runtimeConfig: {