From 44080b5807770fd520c1cdcea53f9b3684586d2d Mon Sep 17 00:00:00 2001 From: Daseul Kim Date: Mon, 30 Jun 2025 14:42:59 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20ecosystem.config.js=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20-=20args=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20env=20?= =?UTF-8?q?=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecosystem.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ecosystem.config.js b/ecosystem.config.js index a79cb57..303d746 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -3,8 +3,13 @@ module.exports = { { name: 'on-site-survey', script: 'node_modules/next/dist/bin/next', + args: 'start', instances: 2, exec_mode: 'cluster', + env_file: '.env.production', + env: { + NODE_ENV: 'production', + }, }, ], }