-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
52 lines (44 loc) · 844 Bytes
/
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
export default defineNuxtConfig({
devtools: { enabled: true },
modules: [
'@pinia/nuxt',
'@pinia-plugin-persistedstate/nuxt',
'@nuxtjs/tailwindcss',
'@vee-validate/nuxt',
'@vueuse/nuxt',
'@nuxt/image',
],
veeValidate: {
autoImports: true,
componentNames: {
Field: 'UiFormField',
},
},
tailwindcss: {
cssPath: '~/styles/tailwind.css',
},
pinia: {
storesDirs: ['./stores/**'],
},
hooks: {
'components:dirs': (dirs) => {
dirs.unshift({
path: '~/components/ui',
extensions: ['.vue'],
prefix: 'Ui',
pathPrefix: false,
});
},
},
build: {
transpile: ['trpc-nuxt', 'vue-sonner'],
},
nitro: {
esbuild: {
options: {
target: 'esnext',
},
},
},
compatibilityDate: '2024-08-22',
});