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" };