From f7fb9aa6cd0ca4a4b49e533643e623e5a39cdc28 Mon Sep 17 00:00:00 2001 From: Romain bogdanovic Date: Tue, 31 Mar 2026 20:46:02 +0200 Subject: [PATCH] fix: use npx next build in cupadev build command Co-Authored-By: Claude Sonnet 4.6 --- cupadev.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cupadev.json b/cupadev.json index 343584f2..2815793d 100644 --- a/cupadev.json +++ b/cupadev.json @@ -1,6 +1,6 @@ { "framework": "NEXTJS", - "buildCommand": "npx prisma db push --accept-data-loss && next build", + "buildCommand": "npx prisma db push --accept-data-loss && npx next build", "installCommand": "npm install --legacy-peer-deps", "outputDirectory": ".next", "port": 3000,