Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ Prisma Config is now the default place for configuring how the Prisma CLI intera
database. You now configure your database URL, schema location, migration output, and custom seed
scripts.

:::info

The `prisma.config.ts` file should be placed at the **root of your project** (where your `package.json` is located).

:::

```ts
import 'dotenv/config'
import { defineConfig, env } from 'prisma/config'
Expand Down
Loading