mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import path from "node:path";
|
|
import type { PrismaConfig } from "prisma";
|
|
|
|
export default {
|
|
earlyAccess: true,
|
|
schema: path.join("prisma", "schema"),
|
|
} satisfies PrismaConfig;
|