thomaswilson-sveltekit/prisma.config.ts

15 lines
396 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-03-01 08:52:30 +00:00
});