From a081c0499b9c1c7647edf81d94ededa6ad38c3a8 Mon Sep 17 00:00:00 2001 From: iDefineHD Date: Sun, 11 Jan 2026 01:16:17 +0000 Subject: [PATCH] Enable watch mode in ecosystem config --- ecosystem.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ecosystem.config.js b/ecosystem.config.js index 23fb411..30532ea 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -7,7 +7,11 @@ module.exports = { instances: 1, exec_mode: "cluster", autorestart: true, - watch: false, + watch: true, + ignore_watch: ["node_modules", "logs", ".git", "frontend"], + watch_options: { + followSymlinks: false, + }, max_memory_restart: "1G", env: { NODE_ENV: "production",