From 26adbafde2591fec6b6737a412f2d527172c2072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Wed, 8 Apr 2026 00:29:20 +0100 Subject: [PATCH] fix(web): remove --no-turbopack from build script (Docker uses ENV TURBOPACK=0) The --no-turbopack flag isn't recognized when Next.js runs inside the Docker builder stage. The Dockerfile already sets ENV TURBOPACK=0 which achieves the same effect. Co-Authored-By: Claude Sonnet 4.6 --- apps/web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/package.json b/apps/web/package.json index 3caa41a..9d0a1b9 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "scripts": { - "build": "next build --no-turbopack", + "build": "next build", "clean": "git clean -xdf .cache .next .turbo node_modules", "dev": "next dev", "format": "prettier --check . --ignore-path ../../.gitignore",