ecosystem.config.js 289 B

12345678910111213141516
  1. /*
  2. * @Author: wjc
  3. * @Date: 2023-10-31 16:05:00
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2026-01-09 14:34:52
  6. * @Description: pm2 部署
  7. */
  8. module.exports = {
  9. apps: [
  10. {
  11. name: 'nuxt4-template',
  12. port: '30103',
  13. script: './.output/server/index.mjs',
  14. },
  15. ],
  16. }