From a282a80a6e4b4e0ab9e67d938015a4f7068dd01d Mon Sep 17 00:00:00 2001 From: Yidadaa Date: Sun, 9 Jul 2023 22:18:48 +0800 Subject: [PATCH] chore: suppress module not found warning --- next.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index e0483f567..01d342717 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -20,6 +20,10 @@ const nextConfig = { ); } + config.resolve.fallback = { + child_process: false, + }; + return config; }, output: mode,