serverless-webpack-prisma icon indicating copy to clipboard operation
serverless-webpack-prisma copied to clipboard

When using serverless webpack, you can save up to 50% of package capacity by deleting unnecessary Prisma engine.

Results 7 serverless-webpack-prisma issues
Sort by recently updated
recently updated
newest added

Hi, Just wanted to give a heads up that users of this plugin may see issues since the the [5.2.0 release](https://github.com/prisma/prisma/releases/tag/5.2.0) of prisma. The `--data-proxy` parameter has been deprecated in...

Is there a way to specify in the plugin to use something other than node_modules where prisma is generated? ```prisma generator client { provider = "prisma-client-js" binaryTargets = ["native", "darwin-arm64",...

Hello! I am facing serverless invocation issue. Appreciate any help! Followed [this](https://www.prisma.io/docs/guides/deployment/deployment-guides/use-prisma-with-serverless-framework) link for deployment and getting the below error. _Error: PrismaClientInitializationError: Prisma Client could not find its `schema.prisma`. This...

I understand the `installDeps` option was added because it was required for a previous version of Prisma. However, this increases deploy times massively. I have a project that already has...

On adding this plugin, the size increased from 55MB to 86MB 🥲

Hey there. I originally opened an issue requesting the ability to configure where the serverless-webpack-prisma plugin looks up the .webpack folder: https://github.com/danieluhm2004/serverless-webpack-prisma/issues/18 I was happy to see it was recently...

It seems that currently the code generates the client without the --sql flag so the package doesn't include the sql files. ``` generateCommand() { let command = 'npx prisma generate';...