Rename ecosystem config to .cjs for ESM compatibility

This commit is contained in:
otivm
2026-04-25 11:50:20 +00:00
parent 1bc45d5b52
commit 3b463caeb7

14
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [
{
name: 'otivm',
script: 'serve',
args: 'dist -l 3000 -s',
cwd: '/home/otivm/OTIVM',
interpreter: 'none',
env: {
NODE_ENV: 'production',
},
},
],
}