@@ -353,7 +353,7 @@ Configure the schema engine your project should use.
353353
354354``` ts
355355import path from " node:path" ;
356- import { defineConfig , env } from " @ prisma/config" ;
356+ import { defineConfig , env } from " prisma/config" ;
357357export default defineConfig ({
358358 engine: " classic" ,
359359 datasource: {
@@ -368,7 +368,7 @@ provide the adapter you wish to use
368368
369369``` ts
370370import path from " node:path" ;
371- import { defineConfig , env } from " @ prisma/config" ;
371+ import { defineConfig , env } from " prisma/config" ;
372372import { PrismaD1 } from " @prisma/adapter-d1" ;
373373export default defineConfig ({
374374 experimental: {
@@ -429,7 +429,7 @@ provide a type-safe way of accessing that variable:
429429
430430``` tsx
431431import path from " node:path" ;
432- import { defineConfig , env } from " @ prisma/config" ;
432+ import { defineConfig , env } from " prisma/config" ;
433433
434434type Env = {
435435 DATABASE_URL: string
@@ -455,7 +455,7 @@ npm install dotenv
455455
456456``` ts
457457import " dotenv/config" ;
458- import { defineConfig , env } from " @ prisma/config" ;
458+ import { defineConfig , env } from " prisma/config" ;
459459
460460type Env = {
461461 DATABASE_URL: string
@@ -569,7 +569,7 @@ If Prisma is installed globally (`npm i -g prisma`), it may not find your `prism
569569To avoid issues:
570570
571571- Prefer local Prisma installations in your project.
572- - Or use ` @ prisma/config` locally and pass ` --config ` to point to your config file.
572+ - Or use ` prisma/config ` locally and pass ` --config ` to point to your config file.
573573
574574### Monorepos
575575
0 commit comments