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