I'm trying to use `prisma` along with `sst` in a s...
# help
m
I'm trying to use
prisma
along with
sst
in a simple API. Prisma requires access to this
schema.prisma
file -- how can I include that extra file to be packaged up with the code during deployment?
t
However I caution using prisma, it's not very friendly to serverless deployments (huge binaries that it needs) If you're looking for a similiar typesafe client checkout kysely - it provides solid typesafety without any codegen
m
Ah okay makes sense, I was hoping to avoid using Lambda Layers although this solution is fairly slick in terms of setting it up on the fly.