-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
40 lines (36 loc) · 896 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
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 rewrites() {
return [
{
source: "/api/:path*",
destination: "https://api.mohir.uzbekvoice.ai/:path*", // Proxy to Backend
},
];
},
// async redirects() {
// return [
// {
// source: '/pricing',
// 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,
// },