add prisma generate to build script

This commit is contained in:
Joel Gustafson
2025-10-07 13:17:09 -04:00
parent 2da9828e8d
commit d836887b5a

View File

@@ -6,7 +6,7 @@
"scripts": {
"start": "next start -p $PORT",
"export": "next export",
"build": "next build",
"build": "prisma generate && next build",
"dev": "next dev",
"test": "echo \"Error: no test specified\" && exit 1"
},