prismavercelnext.js13mongodb-atlas

vercel error: @prisma/client did not initialize yet. please run "prisma generate" and try to import it again


- info Linting and checking validity of types...
- info Collecting page data...
Error: @prisma/client/edge did not initialize yet. Please run "prisma generate" and try to import it again.
In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues
    at new PrismaClient (/vercel/path0/node_modules/.prisma/client/edge.js:3:11)

Above one is the problem I got when I deployed on vercel with MongoDb (atlas URL) backend and prisma as ORM.

I observe that @prisma/client instance is missing in deployment time . I have created separate file prisma object and using across the app.

How to solve this ?


Solution

  • I have solved this with below steps

    Above steps helps to solve my problem.