diff --git a/next.config.ts b/next.config.ts index e8318fa..f852557 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,13 @@ import type { NextConfig } from 'next'; import { i18n } from './next-i18next.config.js'; const nextConfig: NextConfig = { + webpack: (config) => { + config.resolve.fallback = { + ...config.resolve.fallback, + fs: false, + }; + return config; + }, reactStrictMode: true, i18n, images: {