From 15fa52227bf9e602dfdd575ef5de8079a33a6cd4 Mon Sep 17 00:00:00 2001 From: "A. F. Dudley" Date: Tue, 3 Mar 2026 04:52:11 +0000 Subject: [PATCH] fix(webapp): replace next experimental-compile with next build experimental-compile was removed in Next.js 14+. The functionality was merged into the standard build command. Co-Authored-By: Claude Opus 4.6 --- .../data/container-build/cerc-nextjs-base/scripts/build-app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/data/container-build/cerc-nextjs-base/scripts/build-app.sh b/stack_orchestrator/data/container-build/cerc-nextjs-base/scripts/build-app.sh index 882ae05d..699ac114 100755 --- a/stack_orchestrator/data/container-build/cerc-nextjs-base/scripts/build-app.sh +++ b/stack_orchestrator/data/container-build/cerc-nextjs-base/scripts/build-app.sh @@ -105,7 +105,7 @@ if [ ! -f "package.dist" ]; then cp package.json package.dist fi -cat package.dist | jq '.scripts.cerc_compile = "next experimental-compile"' | jq '.scripts.cerc_generate = "next experimental-generate"' > package.json +cat package.dist | jq '.scripts.cerc_compile = "next build"' | jq '.scripts.cerc_generate = "next experimental-generate"' > package.json CUR_NEXT_VERSION="`jq -r '.dependencies.next' package.json`"