-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnext.config.js
58 lines (43 loc) · 1007 Bytes
/
next.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
module.exports = {
i18n: {
// providing the locales supported by your application
locales: ["uz-UZ", "en-US", "ru-RU"],
// default locale used when the non-locale paths are visited
defaultLocale: "uz-UZ",
localeDetection: false
},
reactStrictMode: true,
swcMinify: true,
async redirects() {
return [
{
source: '/bosqich',
destination: '/bosqich/1',
permanent: false,
},
{
source: '/hakaton',
destination: '/hakaton/1',
permanent: false,
},
{
source: '/teams',
destination: '/',
permanent: false,
},
{
source: '/guide',
destination: '/',
permanent: false,
},
]
},
}
// publicRuntimeConfig: {
// url: process.env.DIRECTUS_URL,
// },
// serverRuntimeConfig: {
// email: process.env.DIRECTUS_EMAIL,
// password: process.env.DIRECTUS_PASSWORD,
// // token: process.env.DIRECTUS_STATIC_TOKEN,
// },