mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
|
|
import path from "node:path"
|
||
|
|
import { defineConfig } from "prisma/config"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
schema: path.join(__dirname, "../common/prisma/schema.prisma"),
|
||
|
|
})
|