aboutsummaryrefslogtreecommitdiffstats
path: root/packages/db/index.ts
blob: 31ebeec28d2960a9885d54d656fb74089a9f005f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { PrismaClient } from "@prisma/client";

const globalForPrisma = globalThis as unknown as {
  prisma: PrismaClient | undefined;
};

export const prisma =
  globalForPrisma.prisma ??
  new PrismaClient({
    log:
      process.env.NODE_ENV === "development"
        ? ["query", "error", "warn"]
        : ["error"],
  });

export * from "@prisma/client";