import{ PrismaClient }from '../app/generated/prisma'
I see red underline for this line in my vs code and also having a error "module can be found" something like that in my terminal.
But it worked when i changed the import statement to below path adding "client" because the client.ts file had exported the prisma and prismaclient in it so i tried it and it worked.
import { PrismaClient, Prisma } from "../app/generated/prisma/client";
Is there anything more i need to know about it?
Why that original path does not work anymore even that is in the official site?