ci: move prisma generate to launch stage

This commit is contained in:
Vasily Zubarev
2025-05-03 10:08:39 +02:00
parent 9a6f2d9c32
commit e0508be540
3 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "next dev -p 7331 --turbopack",
"build": "prisma generate && next build",
"build": "next build",
"start": "prisma migrate deploy && next start",
"lint": "next lint"
},