jaba-dashboard/next.config.js

18 lines
442 B
JavaScript
Raw Permalink Normal View History

2024-07-15 13:18:31 +05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{ source: '/auth', destination: '/auth/signin', permanent: false },
{ source: '/user', destination: '/user/home', permanent: false },
{ source: '/', destination: '/user/home', permanent: false },
];
},
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
};
module.exports = nextConfig;