-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathnuxt.config.ts
108 lines (95 loc) · 2.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import Aura from '@primeuix/themes/aura'
import pkg from './package.json'
export const wrappedPrimeInputs: string[] = ['AutoComplete', 'CascadeSelect', 'Checkbox', 'Chip', 'ColorPicker', 'DatePicker', 'Editor', 'InputMask', 'InputNumber', 'InputOtp', 'InputText', 'Knob', 'Listbox', 'MultiSelect', 'Password', 'RadioButton', 'Rating', 'Select', 'SelectButton', 'Slider', 'Textarea', 'ToggleButton', 'ToggleSwitch', 'TreeSelect']
export default defineNuxtConfig({
modules: [
'@pinia/nuxt',
'@nuxt/content',
'@vueuse/nuxt',
'@nuxt/test-utils/module',
'@nuxt/eslint',
'@nuxt/image',
'@nuxt/fonts',
'@sfxcode/formkit-primevue-nuxt',
'@unocss/nuxt',
'@pinia/colada-nuxt',
],
ssr: true,
devtools: { enabled: true },
content: {
highlight: {
theme: {
// Default theme (same as single string)
default: 'github-light',
// Theme used if `html.dark`
dark: 'github-dark',
},
},
},
runtimeConfig: {
public: {
APP_VERSION: pkg.version,
APP_NAME: pkg.name,
// eslint-disable-next-line node/prefer-global/process
APP_MODE: process.env?.NODE_ENV,
},
},
build: {
transpile: ['nuxt', 'primevue', '@sfxcode/formkit-primevue'],
},
sourcemap: {
client: false,
server: false,
},
future: {
compatibilityVersion: 4,
},
experimental: {
appManifest: false,
},
compatibilityDate: '2024-07-04',
debug: false,
eslint: {
config: {
standalone: false,
nuxt: {
sortConfigKeys: true,
},
},
},
formkitPrimevue: {
includePrimeIcons: true,
includeStyles: true,
installFormKit: true,
installI18N: true,
},
i18n: {
lazy: true,
langDir: 'locales',
defaultLocale: 'en',
strategy: 'no_prefix',
locales: [
{ code: 'en', file: 'en.json', name: 'English' },
{ code: 'de', file: 'de.json', name: 'German' },
],
vueI18n: '../vue-i18n.options.ts',
bundle: {
optimizeTranslationDirective: false,
},
},
primevue: {
autoImport: true,
options: {
theme: {
preset: Aura,
options: {
darkModeSelector: '.dark',
},
},
ripple: true,
},
components: {
exclude: [...wrappedPrimeInputs, 'Button', 'Form', 'FormField', 'Chart'],
},
},
})