Constantly reoccuring "@prisma/client did not initialize yet." #9230
Unanswered
mandymozart
asked this question in
Questions
Replies: 1 comment
-
I found out how I inherited the version conflict. It is important to use the same fixed version number of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I run into the same frustrating error whenever I start over setting up the project in a new instance.
I generate the prisma client with the postinstall routine and yarn. so basically that should work out of the box.
the post install tells me prisma client is now available at @prisma/client, which is exactly where it should be in the node modules folder.
yet, when I run keystone:dev the client can not be found, because keystone is looking for it in `node_modules/keystone-6/node_modules/'
only downgrading to
@prisma/client 5.00.0
worked but only after up and downgrading. not exactly sure how to reproduce this "hack"when I start fresh now i get this:
and client once again can not be found. why the hell are there two @prisma/client?
here is my package:
Beta Was this translation helpful? Give feedback.
All reactions