Files
0x1eo.dev/nuxt.config.ts
Leandro Afonso 24e7da0447 init
2025-09-27 18:17:32 +01:00

22 lines
625 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss'],
app: {
head: {
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'author', content: 'Leandro Afonso' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'format-detection', content: 'telephone=no' }
],
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.png' }]
}
}
})