It was working fine in the older version, when i tried to use ecosystem.config.cjs file as startup file there is an error message appeared
load plugin failed: invalid plugin entry
Here is my ecosystem.config.cjs
module.exports = {
apps: [
{
name: 'coltura_frontend',
port: '3000',
exec_mode: 'cluster',
instances: 'max',
script: './.output/server/index.mjs',
node_args: '--network-family-autoselection-attempt-timeout=5000',
env: {
NODE_TLS_REJECT_UNAUTHORIZED: 0,
NODE_OPTIONS: '--network-family-autoselection-attempt-timeout=5000',
},
},
],
}
