Remove NODE_ENV from environment configuration in development and production setups

This commit is contained in:
yoosangwook 2025-05-28 18:39:55 +09:00
parent 636ac163dd
commit 342b5a37f1
2 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@ module.exports = {
instances: 1, instances: 1,
exec_mode: 'fork', exec_mode: 'fork',
env: { env: {
NODE_ENV: 'development',
PORT: 5010, PORT: 5010,
}, },
}, },

View File

@ -6,7 +6,6 @@ module.exports = {
instances: 2, instances: 2,
exec_mode: 'cluster', exec_mode: 'cluster',
env: { env: {
NODE_ENV: 'production',
PORT: 5000, PORT: 5000,
}, },
}, },