From 962d5623bb4655464ff1ef1e8aeb6a97e0add36e Mon Sep 17 00:00:00 2001 From: TAEINJEONG Date: Wed, 20 Aug 2025 18:31:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20wepack=20=EB=B9=8C=EB=93=9C=20=EB=90=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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: {