19 lines
472 B
TypeScript
19 lines
472 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: [],
|
|
css: ['bulma/css/bulma.min.css', '@/assets/css/main.css'],
|
|
nitro: {
|
|
preset: 'vercel'
|
|
},
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
|
{ rel: 'alternate icon', type: 'image/x-icon', href: '/favicon.ico' }
|
|
]
|
|
}
|
|
}
|
|
})
|