source: src/lib/prisma.ts@ 057453c

main
Last change on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 369 bytes
Line 
1import { PrismaClient } from '@prisma/client';
2
3let prisma: PrismaClient;
4
5if (process.env.NODE_ENV === 'production') {
6 prisma = new PrismaClient();
7} else {
8 // Ensure we don't create multiple instances in development
9 if (!(global as any).prisma) {
10 (global as any).prisma = new PrismaClient();
11 }
12 prisma = (global as any).prisma;
13}
14
15export default prisma;
Note: See TracBrowser for help on using the repository browser.