vercel Prisma Client could not locate the Query Engine
Hey,
I'm currently trying to deploy the development version of my website on vercel and I have started getting this error after updating to version
6.4.1
(previously was on 5.4
).
I have read the guide linked in the error, but I am a little confused about some of the implementation for some of the "fixes".
I have already implemented a globalForPrisma
variable, only difference is I am using prisma in a monorepo, so I have a package called "database", which allows me to reuse my schema across all apps.
This is not a build error, this is a runtime error and the prisma client is generated at build time using a npm script: "build": "pnpm run db:generate & tsup"
as suggested in the guide above (at build time it is having no issues finding prisma schema)4 Replies
Howdy, friend! I'm the Prisma AI Help Bot — fast answers from me, or slow, hand-crafted wisdom from a dev? Choose wisely, adventurer.
Does the error go away if you downgrade to version 5.4?
Did you try adding binaryTargets to your schema file?
Did you try this?
https://www.npmjs.com/package/@prisma/nextjs-monorepo-workaround-plugin
npm
@prisma/nextjs-monorepo-workaround-plugin
Ensures that your Prisma files are copied. Latest version: 6.4.1, last published: 5 days ago. Start using @prisma/nextjs-monorepo-workaround-plugin in your project by running
npm i @prisma/nextjs-monorepo-workaround-plugin
. There are 7 other projects in the npm registry using @prisma/nextjs-monorepo-workaround-plugin.hi, i ended up downgrading to 5.4 again and it started working.
However, I have just installed the latest version again and it all seems to be working fine? a bit confused, but ill take it as a win.
I have not added any binary targets or packages as suggested above.
im very happy to see the
strictUndefinedChecks
preview feature in v6 🙂I am glad to hear that everything is now working as expected.
You can learn more about all preview features and their timeline for GA here:
https://github.com/prisma/prisma/discussions/26136
GitHub
Preview Features Update 2025 · prisma prisma · Discussion #26136
Hi everybody, Over the past few years, we’ve introduced several preview features to expand the Prisma ORM's capabilities. Some have been well-received and integrated into the core, while others...