generated from antfu/vitesse-nuxt
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
101 lines (100 loc) · 2.09 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
import { fileURLToPath } from 'url';
import svgLoader from 'vite-svg-loader';
export default defineNuxtConfig({
app: {
// pageTransition: { name: 'page', mode: 'out-in' },
head: {
link: [{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }],
htmlAttrs: {
lang: 'en-US',
},
meta: [{ name: 'description', content: 'Voe Air' }],
},
},
modules: [
'@vueuse/nuxt',
'nuxt-unhead',
'@unocss/nuxt',
'@nuxtjs/color-mode',
'@nuxtjs/critters',
'vite-plugin-vue-type-imports/nuxt',
'@nuxtjs/i18n',
'nuxt-swiper',
],
unhead: {},
alias: {
'@img': fileURLToPath(new URL('./assets/images', import.meta.url)),
'@icons': fileURLToPath(new URL('./assets/icons', import.meta.url)),
'@data': fileURLToPath(new URL('./assets/data', import.meta.url)),
},
experimental: {
reactivityTransform: false,
inlineSSRStyles: false,
},
css: ['@unocss/reset/tailwind.css', '@/assets/styles/root.scss'],
colorMode: {
classSuffix: '',
fallback: 'dark',
},
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "@/assets/styles/global.scss" as *;',
},
},
},
plugins: [
svgLoader({
defaultImport: 'url',
}),
],
},
swiper: {
modules: [],
},
i18n: {
strategy: 'prefix',
baseUrl: 'https://voey.netlify.app',
skipSettingLocaleOnNavigate: true,
detectBrowserLanguage: {
useCookie: false,
fallbackLocale: 'en',
},
vueI18n: {
fallbackLocale: 'en',
legacy: false,
},
lazy: true,
defaultLocale: 'en',
types: 'composition',
langDir: 'i18n/locales',
locales: [
{
code: 'en',
iso: 'en',
file: 'en.json',
},
{
code: 'es',
iso: 'es',
file: 'es.json',
},
{
code: 'fr',
iso: 'fr',
file: 'fr.json',
},
{
code: 'ja',
iso: 'ja',
file: 'ja.json',
},
{
code: 'zh',
iso: 'zh',
file: 'zh.json',
},
],
},
});