chad/server/prisma/client.ts
Никита Круглицкий bb48e52a99
Some checks failed
Deploy / deploy (push) Failing after 4m2s
update
2025-10-09 22:29:42 +06:00

8 lines
146 B
TypeScript

import { PrismaClient } from '@prisma/client'
const instance = new PrismaClient({
log: ['query', 'error', 'warn'],
})
export default instance