chore: 容器启动时不需要重新 generate prisma client library

This commit is contained in:
Clansty 2024-01-12 21:01:45 +08:00
parent 29f4712450
commit 8fd26c7bd4
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "prisma db push --accept-data-loss && node build/index.js",
"start": "prisma db push --accept-data-loss --skip-generate && node build/index.js",
"prisma": "prisma",
"import": "ts-node tools/import"
},