From 4bef6f42df6d4673ebbf1bdc44a6a20f289d9ec5 Mon Sep 17 00:00:00 2001 From: eunsiho Date: Fri, 27 Dec 2024 04:59:01 +0900 Subject: [PATCH] =?UTF-8?q?next.config=EB=B3=80=EA=B2=BD#143?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/next.config.js b/next.config.js index 615b8cc..e193570 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ +const removeImports = require("next-remove-imports")(); + const nextConfig = { output: "standalone", images: { @@ -14,7 +16,6 @@ const nextConfig = { reactStrictMode: false, }; -module.exports = nextConfig; - -// const removeImports = require("next-remove-imports")(); -// module.exports = removeImports({}); +module.exports = removeImports({ + ...nextConfig, +});