website/next.config.mjs

11 lines
184 B
JavaScript
Raw Normal View History

2024-11-23 14:43:06 +03:30
/** @type {import('next').NextConfig} */
const nextConfig = {
i18n: {
locales: ['en', 'fa'],
2024-11-23 22:45:26 +03:30
defaultLocale: 'fa'
2024-11-23 14:43:06 +03:30
},
reactStrictMode: true,
};
export default nextConfig;