CoolFace
Apppublic

App-Transportation/backend

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
db.ts10 linesDownload Raw Back to root
1import { PrismaClient } from "@prisma/client";
2
3declare global {
4  var prisma: PrismaClient | undefined;
5}
6
7export const db = globalThis.prisma || new PrismaClient();
8
9if (process.env.NODE_ENV !== "production") globalThis.prisma = db;
10