We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e491c9f commit cdbc832Copy full SHA for cdbc832
.gitignore
@@ -6,4 +6,5 @@ dist
6
storage
7
coverage
8
.DS_Store
9
-data
+data
10
+src/generated/prisma-client
prisma/schema.prisma
@@ -1,5 +1,6 @@
1
generator client {
2
provider = "prisma-client-js"
3
+ output = "../src/generated/prisma-client"
4
engineType = "client"
5
}
src/base/Prisma.ts
@@ -1,4 +1,4 @@
-import { PrismaClient } from '@prisma/client';
+import { PrismaClient } from '../generated/prisma-client';
// PrismaClient is attached to the `global` object in development to prevent
// exhausting your database connection limit.
0 commit comments