mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-30 12:34:19 +01:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
const { PrismaClient } = require('@prisma/client')
|
|
|
|
let prisma;
|
|
|
|
if (!global.prisma) {
|
|
console.log("New Prisma Client");
|
|
global.prisma = new PrismaClient({
|
|
log: ["info"],
|
|
});
|
|
}
|
|
prisma = global.prisma;
|
|
|
|
module.exports = {
|
|
prisma
|
|
} |