chore(package): add prisma migrate deploy to postinstall script

This commit is contained in:
cfngc4594 2025-03-11 15:29:35 +08:00
parent 6a01fed089
commit 90e9829b79

View File

@ -5,7 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "prisma generate",
"postinstall": "prisma generate && prisma migrate deploy",
"start": "next start",
"lint": "next lint"
},