From 0cb505cd59f86de66b043407e197edff33033428 Mon Sep 17 00:00:00 2001 From: Nyk <0xnykcd@googlemail.com> Date: Thu, 5 Mar 2026 23:01:00 +0700 Subject: [PATCH] fix: remove webpack-only Next.js config --- next.config.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/next.config.js b/next.config.js index 3ee2c78..a93ab1a 100644 --- a/next.config.js +++ b/next.config.js @@ -36,16 +36,6 @@ const nextConfig = { ]; }, - webpack: (config) => { - config.resolve.fallback = { - ...config.resolve.fallback, - net: false, - os: false, - fs: false, - path: false, - }; - return config; - }, }; module.exports = nextConfig;