Vercel Build Failing with Prisma + Supabase + Next.js API Routes
@prisma/client has no exported member 'PrismaClient'
Cannot find module 'express'
npm run build exited with code 1
I’ve already tried:npx prisma generate
works, Installed all needed deps (@prisma/client
, prisma
, typescript
, etc.), Set CI=false
in Vercel env vars, Cleaned project structure and removed old Express files. Still getting the build error. Any idea what I might be missing?
Here’s what I’ve got: schema.prisma
```prisma
generator client {...How to build TS application that uses prismaGenerated files
prisma 6.7.0 not working in vercel
prisma.form.create()
invocation:
...How to compile or get client generation result in memory?
Recommendation for data migration with prisma and mongodb
Would this work for exemple : // scripts/addNewFields.js import { PrismaClient } from '@prisma/client'; const prisma = new PrismaClient();...
Proper way to set connection_limit in Prisma Accelerate
?connection_limit=100
to the accelerate string? Or to the underlying connection string?...Problem with prisma-client generator on vercel with a monorepo

renaming column names
Prisma Client v6.7.0 issue
What is the recommended way to use Prisma types on the front-end?
Prisma.<Model>GetPayload
and something like nitropack
's SerializeObject
type utility works fine, it feels cumbersome and more importantly, it seems to bring the performance of the editor's TypeScript language server down to a crawl, which impedes the pace of development massively.
So I am wondering what's the best way to interface with Prisma types on the client, considering that the data received from the server will be serialized, meaning the generated types won't match as the returned output....[6.7.0] Slow client generation and call to getDMMF()
[6.7.0] prisma.config.ts - Painstakingly slow formatting & lint (on-save) in vscode
Prisma Client (v.5.10.2) in a Next.js project deployed in Vercel. Use or not the explicit disconnect
NextJs w/ Prisma
prisma 6.7.0 working in production
prisma 6.7.0 not working in production

VS Code imports PrismaClient from wrong folder
@prisma/client/extension
instead from the generated folder. I ran npx prisma generate
in the console before that. I have Prisma extension installed.
I get
import { PrismaClient } from "@prisma/client/extension"
import { PrismaClient } from "@prisma/client/extension"
[prisma-client]: Accessing SQLite database with a relative path reports [P2021] error
output
path of the generator client to a directory inside prisma/*
, the generated client files contain subtle differences:
```diff
// ~/prisma/client/internal/class.ts
...Combining raw and standard queries
[HELP] Prisma model field not appearing in generated client (refresh_token missing)