From 75214a3b6492766afe447b3dba64f1fc922c28ab Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Tue, 2 Jun 2026 11:13:13 -0500 Subject: [PATCH] fix: use empty turbopack config to suppress Next.js 16 webpack warning --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 7449fab..f473b08 100644 --- a/next.config.ts +++ b/next.config.ts @@ -34,5 +34,5 @@ const withMDX = createMDX({ }) const config = withMDX(nextConfig) -config.turbopack = undefined +config.turbopack = {} export default config