Created
September 14, 2021 09:31
-
-
Save voidnerd/2b38f3e5c878708b253adb9d67d7a4e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
apps: [ | |
{ | |
name: 'nuxtapp', | |
exec_mode: 'cluster', | |
instances: 'max', // Or a number of instances | |
script: './node_modules/nuxt/bin/nuxt.js', | |
args: 'start', | |
watch: '.', | |
watch_delay: 3000, | |
ignore_watch: ['node_modules'], | |
}, | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment