15 lines
350 B
TypeScript
15 lines
350 B
TypeScript
import { PrismaClient } from '@/generated/prisma/client'
|
|
|
|
const globalForPrisma = global as unknown as {
|
|
prisma: PrismaClient | undefined
|
|
}
|
|
|
|
const prisma = globalForPrisma.prisma ?? new PrismaClient()
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
globalForPrisma.prisma = prisma
|
|
}
|
|
|
|
export default prisma
|
|
export * from '@/generated/prisma/client'
|