Remove Nixpacks start command and add Prisma module cleanup to the package.json start script.

This commit is contained in:
2026-03-02 15:14:01 +01:00
parent 02641e7e94
commit d28594a97c
2 changed files with 1 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && cross-env NEXT_TELEMETRY_DISABLED=1 next build",
"start": "npx prisma generate && npx prisma db push && node .next/standalone/server.js",
"start": "npx prisma generate && npx prisma db push && rm -rf .next/standalone/node_modules/@prisma .next/standalone/node_modules/.prisma && node .next/standalone/server.js",
"lint": "next lint"
},
"dependencies": {