// ecosystem.config.cjs — PM2 config for clickerz backend module.exports = { apps: [ { name: "clickerz-api", cwd: "./Backend", script: "index.js", instances: 1, autorestart: true, watch: false, env: { NODE_ENV: "production", PORT: 3310, }, }, ], };