mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-16 09:41:13 +10: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;
|