From b0dd6c1a4b5d8d611fe685db2ffc6762227a4740 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 24 Sep 2025 08:27:08 +0000 Subject: [PATCH] Remove deprecated swcMinify option from Next.js 15+ config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SWC is now the default minifier in Next.js 15+ - Removes configuration warning during builds - Maintains all other build optimizations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- next.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.js b/next.config.js index 60aeef3..afd2e46 100644 --- a/next.config.js +++ b/next.config.js @@ -13,9 +13,6 @@ const nextConfig = { webpackBuildWorker: true, }, - // Use SWC minifier (faster than Terser) - swcMinify: true, - // Webpack optimizations webpack: (config, { dev, isServer }) => { if (!dev) {