anycoder-6d5b65da / next.config.js
Mehdi
Upload next.config.js with huggingface_hub
97d16b0 verified
Raw
History Blame Contribute Delete
330 Bytes
/** @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