From 9ae7eae36c965495056977ea468ddcece7cb5ebd Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 8 Sep 2022 08:31:06 -0700 Subject: [PATCH] Remove warning for swcMinify being enabled --- packages/next/server/config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/next/server/config.ts b/packages/next/server/config.ts index e5c1260a8d10..07406b6b32c0 100644 --- a/packages/next/server/config.ts +++ b/packages/next/server/config.ts @@ -511,10 +511,6 @@ function assignDefaults(userConfig: { [key: string]: any }) { result.compiler.removeConsole = (result.experimental as any).removeConsole } - if (result.swcMinify) { - Log.info('SWC minify release candidate enabled. https://nextjs.link/swcmin') - } - if (result.experimental?.swcMinifyDebugOptions) { Log.warn( 'SWC minify debug option specified. This option is for debugging minifier issues and will be removed once SWC minifier is stable.'