In simpler words, should Prisma client be version ...
# orm-help
o
In simpler words, should Prisma client be version controlled (Git) or auto-generated through
npx prisma generate
on
npm run dev
?
1
r
Hi @Ofir Cohen 👋 Apologies for the late response, by generating Prisma Client into
node_modules
, the query engine is usually kept out of version control by default since
node_modules
is typically ignored for version control. When using a custom
output
path for the generated Prisma Client, it is advised to exclude it from your version control. For Git, this means adding the
output
path to your
.gitignore
file.