30 lines
628 B
TypeScript
30 lines
628 B
TypeScript
|
|
import type { NextConfig } from 'next'
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
basePath: process.env.BASEPATH,
|
||
|
|
redirects: async () => {
|
||
|
|
return [
|
||
|
|
{
|
||
|
|
source: '/',
|
||
|
|
destination: '/en/dashboards/crm',
|
||
|
|
permanent: true,
|
||
|
|
locale: false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
source: '/:lang(en|fr|ar)',
|
||
|
|
destination: '/:lang/dashboards/crm',
|
||
|
|
permanent: true,
|
||
|
|
locale: false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
source: '/((?!(?:en|fr|ar|front-pages|favicon.ico)\\b)):path',
|
||
|
|
destination: '/en/:path',
|
||
|
|
permanent: true,
|
||
|
|
locale: false
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default nextConfig
|