@prisma/client still points to .prisma/client instead of custom-set output
I recently modified my schema to use the new "prisma-client" provider, and I had to specify an output path for where the generated files will be.
The problem is, @prisma/client still points to the client generated in node_modules?
I don't understand this stuff fully, but shouldn't
Either I'm doing something really wrong or I need to explicitly import from the custom output path I set, instead of from @prisma/client
The problem is, @prisma/client still points to the client generated in node_modules?
I don't understand this stuff fully, but shouldn't
node_modules/@prisma/client/default.d.ts export from "../src/generated/prisma" instead of this:Either I'm doing something really wrong or I need to explicitly import from the custom output path I set, instead of from @prisma/client