main
Last change
on this file since 299af01 was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
369 bytes
|
Line | |
---|
1 | import { PrismaClient } from '@prisma/client';
|
---|
2 |
|
---|
3 | let prisma: PrismaClient;
|
---|
4 |
|
---|
5 | if (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 |
|
---|
15 | export default prisma;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.