12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-04-03',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/icon', '@nuxtjs/tailwindcss', '@nuxt/image'],
|
|
app: {
|
|
head: {
|
|
link: [{ rel: 'icon', type: 'image/png', href: "/favicon.png" }]
|
|
}
|
|
},
|
|
})
|