From 2e66def0574bcd32aa26fa1918753a840be446f1 Mon Sep 17 00:00:00 2001 From: FalahMobile Date: Mon, 15 Jun 2026 10:30:01 +0100 Subject: [PATCH] Remove Turbopack from production build config Turbopack cannot resolve lightningcss native .node binaries at build time. Reverting to webpack for production builds (Turbopack dev server still works via next dev --turbopack flag). Co-Authored-By: Claude Sonnet 4.6 --- next.config.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.ts b/next.config.ts index cd8f14f..68a6c64 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,9 +2,6 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", - turbopack: { - root: process.cwd(), - }, }; export default nextConfig;