From 958bfe174d97d398999d985c25cc188315a0cda6 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Fri, 31 Jul 2026 14:53:17 +0800 Subject: [PATCH] fix: correct enviroment to environment in src/config.ts --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index ff3df60..218b001 100644 --- a/src/config.ts +++ b/src/config.ts @@ -3,13 +3,13 @@ const environments:any = {}; environments.development = { port: 3000, database:`${process.env.DEV_MONGODB}`, - envName: "Development enviroment", + envName: "Development environment", site: "http://localhost:3000", }; environments.production = { port: 8080, database: `${process.env.PROD_MONGODB}`, - envName: "Production enviroment", + envName: "Production environment", site: "https://hackathon-slhbx5lcqq-uc.a.run.app" };