summaryrefslogtreecommitdiff
path: root/next.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'next.config.ts')
-rw-r--r--next.config.ts9
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: {