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, +});