favicon svg lint clean homewait page
All checks were successful
Deploy App / deploy (push) Successful in 1m40s

This commit is contained in:
valere
2025-08-30 18:06:32 +02:00
parent 9224f5b393
commit 13bce90000
13 changed files with 99 additions and 212 deletions

View File

@@ -2,5 +2,26 @@
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss']
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss'],
app: {
head: {
link: [
{ rel: 'icon', type: 'image/png', href: '/favicon/favicon-96x96.png', sizes: '96x96' },
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon/favicon.svg' },
{ rel: 'shortcut icon', href: '/favicon/favicon.ico' },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/favicon/apple-touch-icon.png' },
{ rel: 'manifest', href: '/favicon/site.webmanifest' }
],
script: [
{
src: 'https://umami.erudi.fr/script.js',
defer: true,
'data-website-id': '615690ea-0306-48cc-8feb-e9093fe6a1b7'
}
],
meta: [
{ name: 'apple-mobile-web-app-title', content: 'evilSpins' }
]
}
}
})