// This file was generated by Prisma, and assumes you have installed the following: // npm install --save-dev prisma dotenv import "dotenv/config"; import { defineConfig } from "prisma/config"; export default defineConfig({ schema: "prisma/schema.prisma", migrations: { path: "prisma/migrations", }, datasource: { url: process.env["DATABASE_URL"]!, }, // @ts-expect-error - seed is valid at runtime but missing from type definition in this version seed: { command: "npx tsx prisma/seed.ts", }, });