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 85a5a98 commit c02127aCopy full SHA for c02127a
tests/sandbox/configs/all-the-things.ts
@@ -231,7 +231,10 @@ export const lists = {
231
export default config({
232
db: {
233
provider: 'postgresql',
234
- url: process.env.DATABASE_URL ?? ''
+ url: process.env.DATABASE_URL ?? '',
235
+
236
+ // WARNING: this is only needed for our monorepo examples, don't do this
237
+ prismaClientPath: 'node_modules/myprisma',
238
},
239
storage: localStorageConfig,
240
lists,
tests/sandbox/schema.prisma
@@ -9,6 +9,7 @@ datasource postgresql {
9
10
generator client {
11
provider = "prisma-client-js"
12
+ output = "node_modules/myprisma"
13
}
14
15
model Thing {
0 commit comments