From 342b5a37f1e8d558ca8903cf67554681ba678d96 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Wed, 28 May 2025 18:39:55 +0900 Subject: [PATCH] Remove NODE_ENV from environment configuration in development and production setups --- dev.ecosystem.config.js | 1 - ecosystem.config.js | 1 - 2 files changed, 2 deletions(-) diff --git a/dev.ecosystem.config.js b/dev.ecosystem.config.js index 4b206e77..3bd3ffde 100644 --- a/dev.ecosystem.config.js +++ b/dev.ecosystem.config.js @@ -6,7 +6,6 @@ module.exports = { instances: 1, exec_mode: 'fork', env: { - NODE_ENV: 'development', PORT: 5010, }, }, diff --git a/ecosystem.config.js b/ecosystem.config.js index 06aed8ec..6bf049da 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -6,7 +6,6 @@ module.exports = { instances: 2, exec_mode: 'cluster', env: { - NODE_ENV: 'production', PORT: 5000, }, },