From addc5e389277b392dbe7fbdb24b5cf4a983493a2 Mon Sep 17 00:00:00 2001 From: Alexis Hovorka Date: Tue, 13 Feb 2024 23:17:53 -0700 Subject: [refactor] Remove extra unused consts in config.js --- app/config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/config.js b/app/config.js index 6a66027..b7212e3 100644 --- a/app/config.js +++ b/app/config.js @@ -9,8 +9,6 @@ function deepFreeze(obj) { } Math.clamp ||= ((x,l,h) => Math.max(l,Math.min(x,h))); -const PORT = Math.clamp(+process.env.PORT||8080, 1, 65535); -const HOST = process.env.HOST||"0.0.0.0"; module.exports = deepFreeze({ PORT: Math.clamp(+process.env.PORT||8080, 1, 65535), -- cgit v1.2.3-54-g00ecf