11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
i18n: {
|
|
locales: ['en', 'fa'],
|
|
defaultLocale: 'fa',
|
|
localeDetection: false
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|