2023-11-17 08:05:27 +01:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
2023-11-17 08:12:21 +01:00
|
|
|
devtools: { enabled: true },
|
2023-11-28 16:15:51 +01:00
|
|
|
extends: ['nuxt-umami'],
|
2023-11-17 08:12:21 +01:00
|
|
|
modules: [
|
|
|
|
'@nuxtjs/tailwindcss',
|
2023-11-28 16:15:51 +01:00
|
|
|
'nuxt-icon',
|
2023-11-17 08:12:21 +01:00
|
|
|
],
|
2023-11-28 16:15:51 +01:00
|
|
|
app: {
|
|
|
|
head: {
|
|
|
|
link: [
|
|
|
|
{
|
|
|
|
rel: "icon",
|
|
|
|
href: "/logo.svg",
|
|
|
|
type: "image/svg+xml",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
2023-11-17 08:05:27 +01:00
|
|
|
})
|