From d836887b5a8c74aed9e1c96a2f8cdb0749cf7f87 Mon Sep 17 00:00:00 2001 From: Joel Gustafson Date: Tue, 7 Oct 2025 13:17:09 -0400 Subject: [PATCH] add `prisma generate` to build script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 02f2939..943b05a 100644 --- a/package.json +++ b/package.json @@ -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" },