forked from miurla/babyagi-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-i18next.config.js
68 lines (68 loc) · 1021 Bytes
/
next-i18next.config.js
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
// @ts-check
/**
* @type {import('next-i18next').UserConfig}
*/
module.exports = {
debug: false,
i18n: {
defaultLocale: 'en',
locales: [
'ar',
'au',
'bg',
'bn',
'br',
'cs',
'da',
'de',
'el',
'en',
'es',
'et',
'fa',
'fi',
'fr',
'gb',
'gu',
'he',
'hi',
'hr',
'hu',
'id',
'it',
'ja',
'kn',
'ko',
'lt',
'lv',
'ml',
'nl',
'no',
'pl',
'pt',
'ro',
'ru',
'sk',
'sl',
'sr',
'sv',
'ta',
'te',
'th',
'tr',
'uk',
'ur',
'vi',
'zh',
'zhtw',
],
},
defaultNS: 'common',
ns: ['agent', 'common', 'constants', 'message'],
localePath:
typeof window === 'undefined'
? require('path').resolve('./public/locales')
: '/locales',
reloadOnPrerender: process.env.NODE_ENV === 'development',
saveMissing: false,
};