ci: fix vercel build

This commit is contained in:
Vasily Zubarev
2025-03-21 18:47:16 +01:00
parent f6dc617eae
commit 1647662e09
2 changed files with 2 additions and 5 deletions

View File

@@ -5,11 +5,11 @@
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"seed": "ts-node prisma/seed.ts",
"postinstall": "prisma generate && prisma migrate deploy && npm run seed"
"postinstall": "prisma migrate deploy && npm run seed"
},
"dependencies": {
"@fast-csv/format": "^5.0.2",