From 6459d0cfbaaa31ff45891532bf497be704842f0c Mon Sep 17 00:00:00 2001 From: Romain bogdanovic Date: Tue, 31 Mar 2026 20:34:38 +0200 Subject: [PATCH] fix: use npx prisma 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 d3d7ae9a..343584f2 100644 --- a/cupadev.json +++ b/cupadev.json @@ -1,6 +1,6 @@ { "framework": "NEXTJS", - "buildCommand": "prisma db push --accept-data-loss && next build", + "buildCommand": "npx prisma db push --accept-data-loss && next build", "installCommand": "npm install --legacy-peer-deps", "outputDirectory": ".next", "port": 3000,