From 32e64c8376707a856893e6e598c3c7cc5909e4bc Mon Sep 17 00:00:00 2001 From: Apher Date: Sun, 28 Jun 2026 20:40:09 +0000 Subject: [PATCH] Fix 'invalid shorthand property initializer' --- src/config/redis.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/redis.config.js b/src/config/redis.config.js index 76b1ed8..e11915b 100644 --- a/src/config/redis.config.js +++ b/src/config/redis.config.js @@ -1,4 +1,4 @@ module.exports = { - REDIS_HOST=process.env.REDIS_HOST, - REDIS_PORT=process.env.REDIS_PORT + REDIS_HOST: process.env.REDIS_HOST, + REDIS_PORT: process.env.REDIS_PORT } \ No newline at end of file