dl_site_nuxt/ecosystem.config.js

12 lines
232 B
JavaScript
Raw Permalink Normal View History

module.exports = {
apps: [
{
2025-08-04 23:11:31 +08:00
name: 'truck',
exec_mode: 'cluster',
instances: '1', // Or a number of instances
script: './node_modules/nuxt/bin/nuxt.js',
2025-07-31 00:01:12 +08:00
port: 3007,
args: 'start'
}
]
}