Spaces:
Build error
Build error
File size: 330 Bytes
d831988 6dfc588 97d16b0 6dfc588 97d16b0 6dfc588 97d16b0 d831988 97d16b0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /** @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 |