titles/drizzle.config.ts
ChrQR 98ffb58cdb
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 2m21s
added drizzle and connected to vercel
2024-05-16 14:37:35 +02:00

11 lines
227 B
TypeScript

import "@/drizzle/envConfig";
import { defineConfig } from "drizzle-kit";
export default defineConfig({
schema: "./drizzle/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: process.env.POSTGRES_URL!,
},
});