mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 17:26:38 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
|
|
import path from "node:path";
|
||
|
|
import { defineConfig } from "prisma/config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
schema: path.join(__dirname, "prisma/schema.prisma"),
|
||
|
|
datasource: {
|
||
|
|
url: process.env.DATABASE_URL!,
|
||
|
|
},
|
||
|
|
});
|