35 lines
872 B
TypeScript
35 lines
872 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||
export default defineNuxtConfig({
|
||
compatibilityDate: '2025-07-15',
|
||
devtools: { enabled: true },
|
||
|
||
modules: [
|
||
'@nuxtjs/tailwindcss',
|
||
'@nuxtjs/google-fonts',
|
||
],
|
||
|
||
googleFonts: {
|
||
families: {
|
||
'JetBrains Mono': [400, 500, 700],
|
||
'DM Sans': [400, 500, 700],
|
||
},
|
||
display: 'swap',
|
||
},
|
||
|
||
app: {
|
||
head: {
|
||
title: 'Bennet Gallein IT Solutions',
|
||
htmlAttrs: { lang: 'en' },
|
||
meta: [
|
||
{ charset: 'utf-8' },
|
||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||
{ name: 'description', content: 'Bennet Gallein IT Solutions – Software, Infrastructure & APIs' },
|
||
],
|
||
link: [
|
||
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
||
],
|
||
},
|
||
pageTransition: { name: 'page', mode: 'out-in' },
|
||
},
|
||
})
|