diff options
| author | joonhoekim <26rote@gmail.com> | 2025-06-27 01:25:48 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-06-27 01:25:48 +0000 |
| commit | 15b2d4ff61d0339385edd8cc67bf7579fcc2af08 (patch) | |
| tree | f0c36724855abccf705a9cdcae6fa3efd54d996d /next.config.ts | |
| parent | e9897d416b3e7327bbd4d4aef887eee37751ae82 (diff) | |
(김준회) MDG SOAP 수신 유틸리티 및 API 엔드포인트, 스키마
Diffstat (limited to 'next.config.ts')
| -rw-r--r-- | next.config.ts | 9 |
1 files changed, 9 insertions, 0 deletions
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: { |
