mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { defineConfig } from "prisma/config";
|
|
import path from "node:path";
|
|
|
|
export default defineConfig({
|
|
schema: path.join("prisma", "schema.prisma"),
|
|
});
|