-
Notifications
You must be signed in to change notification settings - Fork 4
/
nuxt.config.ts
75 lines (74 loc) · 1.52 KB
/
nuxt.config.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import Aura from "@primevue/themes/aura";
import defaultTheme from "tailwindcss/defaultTheme";
export default defineNuxtConfig({
app: {
head: {
htmlAttrs: {
lang: "en"
},
title: "Deadlines",
meta: [
{ "http-equiv": "X-UA-Compatible", content: "IE=edge" },
{ name: "author", content: "Dawit (@oneminch)" },
{ name: "robots", content: "index, follow" }
],
link: [
{
rel: "icon",
href: "/favicon.ico"
}
],
script: [
{
src: "https://measure.minch.dev/minch-measure",
async: true,
"data-website-id": "29c33fb8-48e5-4081-9414-7a94aebcdde8"
}
]
}
},
colorMode: {
classSuffix: ""
},
compatibilityDate: "2024-04-03",
components: [{ path: "~/components", pathPrefix: false }],
devtools: { enabled: false },
icon: {
mode: "svg",
serverBundle: "local"
},
modules: [
"@nuxtjs/tailwindcss",
"@nuxt/icon",
"@primevue/nuxt-module",
"@nuxtjs/color-mode"
],
ssr: false,
tailwindcss: {
config: {
mode: "jit",
darkMode: "class",
content: [
"./app.vue",
"./components/**/*.vue",
"./layouts/**/*.vue",
"./pages/**/*.vue"
],
theme: {
extend: {
fontFamily: {
mono: ["Inter", ...defaultTheme.fontFamily.sans]
}
}
}
}
},
telemetry: false,
primevue: {
options: {
theme: {
preset: Aura
}
}
}
});