All checks were successful
Build and deploy updated apps / Build & deploy (push) Successful in 1m50s
68 lines
1.5 KiB
TypeScript
68 lines
1.5 KiB
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
extends: [ '@layers/content' ],
|
|
modules: [
|
|
"@nuxt/ui",
|
|
"@nuxt/image",
|
|
"@nuxt/fonts",
|
|
"@nuxt/icon"
|
|
],
|
|
css: [ '~/assets/css/main.css' ],
|
|
ui: {
|
|
colorMode: false
|
|
},
|
|
app: {
|
|
pageTransition: { name: 'page', mode: 'out-in' }
|
|
},
|
|
fonts: {
|
|
providers: {
|
|
google: false,
|
|
googleicons: false,
|
|
// bunny: false,
|
|
fontshare: false,
|
|
fontsource: false,
|
|
adobe: false
|
|
}
|
|
},
|
|
icon: {
|
|
provider: 'none',
|
|
fallbackToApi: false,
|
|
clientBundle: {
|
|
scan: true,
|
|
includeCustomCollections: true,
|
|
icons: [
|
|
'uil:whatsapp',
|
|
'lucide:heart-handshake',
|
|
'lucide:heater',
|
|
'lucide:wifi',
|
|
'lucide:car-front',
|
|
'lucide:lock',
|
|
'lucide:flame-kindling',
|
|
'lucide:mountain',
|
|
'lucide:cable-car',
|
|
'lucide:id-card-lanyard',
|
|
'lucide:bed',
|
|
'lucide:trees',
|
|
'lucide:store',
|
|
'lucide:snowflake',
|
|
'lucide:bike',
|
|
'lucide:coins',
|
|
'lucide:users',
|
|
'lucide:scaling',
|
|
'lucide:bed-double',
|
|
'lucide:sofa',
|
|
'lucide:shower-head',
|
|
'lucide:toilet',
|
|
'lucide:tv',
|
|
'lucide:microwave',
|
|
'lucide:bubbles',
|
|
'lucide:coffee',
|
|
'lucide:layers',
|
|
'lucide:wind',
|
|
'lucide:sun'
|
|
]
|
|
}
|
|
}
|
|
}) |