Fix Prisma build

This commit is contained in:
DecDuck
2025-11-15 10:59:17 +11:00
parent 2420814862
commit 8f41024be2
6 changed files with 54 additions and 43 deletions

7
prisma.config.ts Normal file
View File

@ -0,0 +1,7 @@
import type { PrismaConfig } from "prisma";
import path from "node:path";
export default {
schema: path.join("prisma"),
earlyAccess: true,
} satisfies PrismaConfig;