fix: ensure Prisma Client generates before Next build in CI/CD

This commit is contained in:
2026-06-09 21:50:30 +03:00
parent a4ad9344a0
commit 898c51279b
+1 -1
View File
@@ -4,7 +4,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "prisma generate && next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"
}, },