Browse Source

fixed bug #5783

pull/5792/head
Arshad Jamal 2 weeks ago
parent
commit
d49fdda06a
  1. 7
      prisma.config.ts

7
prisma.config.ts

@ -1,4 +1,9 @@
import 'dotenv/config';
import dotenv from 'dotenv';
import dotenvExpand from 'dotenv-expand';
const myEnv = dotenv.config();
dotenvExpand.expand(myEnv);
import { join } from 'node:path';
import { defineConfig } from 'prisma/config';

Loading…
Cancel
Save