File size: 205 Bytes
fcf8749
 
 
 
 
 
 
1
2
3
4
5
6
7
8
const { PrismaClient } = require('@prisma/client');

const prisma = new PrismaClient({
  log: [], // Suppress Prisma's internal logs; we handle errors in our own catch blocks
});

module.exports = prisma;