-
Notifications
You must be signed in to change notification settings - Fork 285
/
nuxt.config.ts
142 lines (139 loc) · 2.94 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import process from 'node:process'
const isDev = process.env.NODE_ENV === 'development'
// const apiBaseUrl = 'http://localhost:3001'
const apiBaseUrl = 'https://movies-proxy.vercel.app'
export default defineNuxtConfig({
modules: [
'@vueuse/nuxt',
'@unocss/nuxt',
'@nuxt/image',
'@nuxtjs/i18n',
'@nuxtjs/html-validator',
],
experimental: {
inlineSSRStyles: false,
viewTransition: true,
renderJsonPayloads: true,
},
routeRules: {
'/**': isDev ? {} : { cache: { swr: true, maxAge: 120, staleMaxAge: 60, headersOnly: true } },
},
runtimeConfig: {
public: {
apiBaseUrl,
},
},
devtools: {
enabled: true,
},
image: {
provider: 'proxy',
providers: {
proxy: {
provider: 'ipx',
options: {
baseURL: `${apiBaseUrl}/ipx`,
},
},
},
},
nitro: {
routeRules: {
'/**': { isr: false },
},
},
i18n: {
detectBrowserLanguage: {
useCookie: true,
fallbackLocale: 'en',
},
strategy: 'no_prefix',
locales: [
{
code: 'en',
name: 'English',
file: 'en.json',
},
{
code: 'de-DE',
name: 'Deutsch',
file: 'de-DE.json',
},
{
code: 'es-ES',
name: 'Español',
file: 'es-ES.json',
},
{
code: 'it',
name: 'Italiano',
file: 'it.json',
},
{
code: 'ja',
name: '日本語',
file: 'ja.json',
},
{
code: 'zh-CN',
name: '简体中文',
file: 'zh-CN.json',
},
{
code: 'pt-PT',
name: 'Português',
file: 'pt-PT.json',
},
{
code: 'pt-BR',
name: 'Português do Brasil',
file: 'pt-BR.json',
},
{
code: 'ru-RU',
name: 'Русский',
file: 'ru-RU.json',
},
{
code: 'fr-FR',
name: 'Français',
file: 'fr-FR.json',
},
{
code: 'uk-UA',
name: 'Українська',
file: 'uk-UA.json',
},
],
lazy: true,
langDir: 'internationalization',
defaultLocale: 'en',
},
htmlValidator: {
usePrettier: false,
logLevel: 'verbose',
failOnError: false,
/** A list of routes to ignore (that is, not check validity for). */
ignore: [/\.(xml|rss|json)$/],
options: {
extends: [
'html-validate:document',
'html-validate:recommended',
'html-validate:standard'
],
rules: {
'svg-focusable': 'off',
'no-unknown-elements': 'error',
// Conflicts or not needed as we use prettier formatting
'void-style': 'off',
'no-trailing-whitespace': 'off',
// Conflict with Nuxt defaults
'require-sri': 'off',
'attribute-boolean-style': 'off',
'doctype-style': 'off',
// Unreasonable rule
'no-inline-style': 'off'
}
}
},
})