Spaces:
Build error
Build error
| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| reactStrictMode: true, | |
| i18n: { | |
| locales: ['fa', 'en'], | |
| defaultLocale: 'fa', | |
| localeDetection: false, | |
| }, | |
| webpack: (config) => { | |
| config.resolve.fallback = { fs: false, net: false, tls: false }; | |
| return config; | |
| }, | |
| } | |
| module.exports = nextConfig |