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 <noreply@anthropic.com>
This commit is contained in:
FalahMobile
2026-06-15 10:30:01 +01:00
parent 5ef1e443a5
commit 2e66def057
-3
View File
@@ -2,9 +2,6 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
output: "standalone", output: "standalone",
turbopack: {
root: process.cwd(),
},
}; };
export default nextConfig; export default nextConfig;