From 15b2d4ff61d0339385edd8cc67bf7579fcc2af08 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Fri, 27 Jun 2025 01:25:48 +0000 Subject: (김준회) MDG SOAP 수신 유틸리티 및 API 엔드포인트, 스키마 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'next.config.ts') diff --git a/next.config.ts b/next.config.ts index 9bc5785e..88be10cb 100644 --- a/next.config.ts +++ b/next.config.ts @@ -28,6 +28,15 @@ const nextConfig: NextConfig = { 'tedious': false, }; + // handlebars require.extensions 경고 무시 + config.ignoreWarnings = [ + ...(config.ignoreWarnings || []), + { + module: /node_modules\/handlebars\/lib\/index\.js/, + message: /require\.extensions is not supported by webpack/, + }, + ]; + return config; }, experimental: { -- cgit v1.2.3