Is it expected/normal to see a 14MB increase in Ve...
# orm-help
e
Is it expected/normal to see a 14MB increase in Vercel serverless function’s bundle size after adding Prisma? I’ve tried to only add
@prisma/client
and generate it using
npx prisma generate
to see if I could avoid adding
@prisma
but didn’t see any change.
r
Yup that’s normal. Prisma’s binary size (compressed) would be approx. around 11 mb
e
Alright. Thanks 👍