From 9e5c4a241a69c6fbb869dad041b039de9119635e Mon Sep 17 00:00:00 2001 From: Mayank Kumar Chaudhari Date: Sun, 23 Jul 2023 18:02:37 +0530 Subject: [PATCH] fix #4983 --- typescript/graphql-nextjs/.gitignore | 7 +++++++ typescript/graphql-nextjs/package.json | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/typescript/graphql-nextjs/.gitignore b/typescript/graphql-nextjs/.gitignore index 33270aa1eb6b..e9c8f0d6f667 100644 --- a/typescript/graphql-nextjs/.gitignore +++ b/typescript/graphql-nextjs/.gitignore @@ -1,3 +1,10 @@ node_modules/ src/generated/ .next/ + +# lock files +*lock.* +*.lock + +# db +*.db* diff --git a/typescript/graphql-nextjs/package.json b/typescript/graphql-nextjs/package.json index 696caea9efe0..470005168751 100644 --- a/typescript/graphql-nextjs/package.json +++ b/typescript/graphql-nextjs/package.json @@ -33,5 +33,10 @@ }, "prisma": { "seed": "ts-node prisma/seed.ts" + }, + "pkg": { + "assets": [ + "node_modules/.prisma/client/*.node" + ] } }