-
Notifications
You must be signed in to change notification settings - Fork 72
/
nuxt.config.ts
79 lines (71 loc) · 1.5 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
import Aura from '@primevue/themes/aura'
import pkg from './package.json'
export default defineNuxtConfig({
future: {
compatibilityVersion: 4,
},
compatibilityDate: '2024-07-04',
ssr: true,
devtools: { enabled: true },
runtimeConfig: {
public: {
APP_VERSION: pkg.version,
APP_NAME: pkg.name,
// eslint-disable-next-line node/prefer-global/process
APP_MODE: process.env?.NODE_ENV,
},
},
modules: [
'@pinia/nuxt',
'@nuxt/content',
'@vueuse/nuxt',
'@nuxt/test-utils/module',
'@nuxt/image',
'@nuxt/fonts',
'@sfxcode/formkit-primevue-nuxt',
'@unocss/nuxt',
],
content: {
highlight: {
theme: 'one-dark-pro',
preload: ['json', 'js', 'ts', 'html', 'css', 'vue'],
},
// Options
},
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',
},
formkitPrimevue: {
includePrimeIcons: true,
includeStyles: true,
installFormKit: true,
installI18N: true,
},
primevue: {
autoImport: true,
options: {
theme: {
preset: Aura,
options: {
darkModeSelector: '.dark',
},
},
ripple: true,
},
},
build: {
transpile: ['nuxt', 'primevue', '@sfxcode/formkit-primevue'],
},
sourcemap: {
client: false,
server: false,
},
})