Skip to content

Commit 07a8359

Browse files
committed
fix(prisma): update PrismaClient import path and remove external dependency
1 parent efcd12e commit 07a8359

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

apps/server/src/prisma.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { PrismaClient } from '../prisma/generated/client';
1+
import { PrismaClient } from '@prisma/client';
22

33
export const prisma = new PrismaClient();

apps/server/tsup.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ export default defineConfig(() => ({
55
format: ['esm'],
66
clean: true,
77
sourcemap: true,
8-
external: ['../prisma/generated/client'],
98
}));

0 commit comments

Comments
 (0)