Hi, quick question. Is it possible that the prisma...
# orm-help
a
Hi, quick question. Is it possible that the prisma generate exports into another directory then the npm_modules? Would be interesting for nx mono repo to export this into a library
👀 1
b
@Adrian
Copy code
generator client {
  provider = "prisma-client-js"
  output   = "../generated/client" <========
}
a
Thanks, that worked 😊