From c3c4ac719bb00bed58cac448188efdf04dc0aba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Tue, 12 Nov 2024 16:47:16 -0500 Subject: [PATCH] fix(server/utils): update spelling of db name env variable --- lib/server/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server/constants.ts b/lib/server/constants.ts index 03702f8..96f931e 100644 --- a/lib/server/constants.ts +++ b/lib/server/constants.ts @@ -122,7 +122,7 @@ export const rc: RuntimeConfig & any = { database: { user: process.env.DBUSER, password: process.env.DBPASS, - name: process.env.DBNAME, + name: process.env.DB_NAME, uri: `mongodb://${process.env.DB}`, }, jwt: process.env.JWT,