route v1
All checks were successful
Deploy App / build (push) Successful in 2m25s
Deploy App / deploy (push) Successful in 15s

This commit is contained in:
valere
2025-10-21 00:09:26 +02:00
parent 61b0b6395f
commit f59c496c5d
18 changed files with 391 additions and 137 deletions

View File

@@ -1,4 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
const isProd = process.env.NODE_ENV === 'production'
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
@@ -12,13 +14,15 @@ export default defineNuxtConfig({
{ 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'
}
],
script: isProd
? [
{
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' }
]