-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
36 lines (36 loc) · 857 Bytes
/
nuxt.config.ts
File metadata and controls
36 lines (36 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import tailwindcss from "@tailwindcss/vite";
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2025-05-15",
devtools: { enabled: true },
target: "static",
// make static output
ssr: true,
nitro: {
preset: "static",
},
modules: [
"@nuxt/eslint",
"@nuxt/fonts",
"@nuxt/icon",
"@nuxt/image",
"nuxt-umami",
],
umami: {
id: "ee9a2efa-f5af-496f-8e37-b8fe9e1e8ec2",
host: "https://cloud.umami.is",
autoTrack: true,
// proxy: 'cloak',
useDirective: true,
ignoreLocalhost: false,
// excludeQueryParams: false,
// domains: ['cool-site.app', 'my-space.site'],
// customEndpoint: '/my-custom-endpoint',
// enabled: false,
logErrors: true,
},
vite: {
plugins: [tailwindcss()],
},
css: ["~/assets/app.css"],
});