thomaswilson-sveltekit/prisma.config.ts

16 lines
401 B
TypeScript
Raw Normal View History

2026-03-01 08:52:30 +00:00
// This file was generated by Prisma, and assumes you have installed the following:
// npm install --save-dev prisma dotenv
2026-03-17 21:32:47 +00:00
import 'dotenv/config';
import { defineConfig } from 'prisma/config';
2026-03-01 08:52:30 +00:00
export default defineConfig({
2026-03-17 21:32:47 +00:00
schema: './prisma/schema.prisma',
migrations: {
path: './prisma/migrations',
},
datasource: {
url: process.env['DATABASE_URL'],
},
2026-06-23 12:02:08 +00:00
2026-03-01 08:52:30 +00:00
});