Skip to content

Commit 7406f28

Browse files
committed
update with feedback
1 parent 58be6c7 commit 7406f28

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/200-orm/500-reference/325-prisma-config-reference.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Configure the schema engine your project should use.
353353

354354
```ts
355355
import path from "node:path";
356-
import { defineConfig, env } from "@prisma/config";
356+
import { defineConfig, env } from "prisma/config";
357357
export default defineConfig({
358358
engine: "classic",
359359
datasource: {
@@ -368,7 +368,7 @@ provide the adapter you wish to use
368368

369369
```ts
370370
import path from "node:path";
371-
import { defineConfig, env } from "@prisma/config";
371+
import { defineConfig, env } from "prisma/config";
372372
import { PrismaD1 } from "@prisma/adapter-d1";
373373
export default defineConfig({
374374
experimental: {
@@ -429,7 +429,7 @@ provide a type-safe way of accessing that variable:
429429

430430
```tsx
431431
import path from "node:path";
432-
import { defineConfig, env } from "@prisma/config";
432+
import { defineConfig, env } from "prisma/config";
433433

434434
type Env = {
435435
DATABASE_URL: string
@@ -455,7 +455,7 @@ npm install dotenv
455455

456456
```ts
457457
import "dotenv/config";
458-
import { defineConfig, env } from "@prisma/config";
458+
import { defineConfig, env } from "prisma/config";
459459

460460
type Env = {
461461
DATABASE_URL: string
@@ -569,7 +569,7 @@ If Prisma is installed globally (`npm i -g prisma`), it may not find your `prism
569569
To 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

Comments
 (0)