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 432af39 commit 704dc2dCopy full SHA for 704dc2d
content/200-orm/050-overview/500-databases/200-database-drivers.mdx
@@ -172,14 +172,14 @@ Let's assume you have `output` in your Prisma schema set to `../generated/prisma
172
```prisma
173
generator client {
174
provider = "prisma-client"
175
- output = "../src/generated/client"
+ output = "../src/generated/prisma"
176
}
177
```
178
179
You can reference Prisma Client using a relative path from your application code:
180
181
```ts
182
-import { PrismaClient } from '../generated/prisma/client'
+import { PrismaClient } from './generated/prisma/client'
183
184
const client = new PrismaClient()
185
0 commit comments