Update pm2 config file to run on Windows 10

https://github.com/Unitech/pm2/issues/3657#issuecomment-482010714

This is a known issue with pm2 on Windows.  pm2 tries to run node.cmd as javascript which is wrong.
cshd
Eegras 2020-04-30 18:33:57 -05:00 committed by GitHub
parent 034c12b2aa
commit ae3bf11d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@
"name": "ModMailBot",
"cwd": "./",
"script": "npm",
"args": "start"
"args": "./src/index.js"
}]
}