From d49fdda06a3d6164d8f4a94898feb17377fdae31 Mon Sep 17 00:00:00 2001 From: Arshad Jamal Date: Sun, 19 Oct 2025 10:29:38 +0530 Subject: [PATCH] fixed bug #5783 --- prisma.config.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/prisma.config.ts b/prisma.config.ts index 24da6d886..2617f90f6 100644 --- a/prisma.config.ts +++ b/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';