I have next js project I add website in node project, setup the run opt with customize pm2
this is my ecosystem config
export const apps = [
{
name: "sigap-FE",
script: "npm", // Your start file,
args: "start",
instances: 1, // Number of instances
exec_mode: "cluster", // For load balancing
watch: true, // Enable watch mode to restart on changes
env: {
NODE_ENV: "production",
PORT: 3000,
},
},
];
then I run pm2 list it show notihing