website/ecosystem.config.js

12 lines
222 B
JavaScript

module.exports = {
apps: [
{
name: "My Website",
exec_mode: "cluster",
instances: "max", // Or a number of instances
script: "./node_modules/nuxt/bin/nuxt.js",
args: "start"
}
]
}