mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 00:31:17 +01:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import type { PrismaConfig } from "prisma";
|
|
import path from "node:path";
|
|
|
|
export default {
|
|
schema: path.join("prisma"),
|
|
earlyAccess: true,
|
|
} satisfies PrismaConfig;
|