vision-agent / lib /db /prisma.ts
MingruiZhang's picture
feat: theme and logo (#58)
1b0e328 unverified
raw
history blame
No virus
247 Bytes
import { PrismaClient } from '@prisma/client';
declare global {
var prisma: PrismaClient | undefined;
}
const db = globalThis.prisma || new PrismaClient();
if (process.env.NODE_ENV != 'production') globalThis.prisma = db;
export default db;