This commit is contained in:
Oliver Bryan
2026-02-04 16:31:06 +00:00
parent 6525dbc495
commit 66a6a5345c
2 changed files with 15 additions and 0 deletions

14
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
module.exports = {
apps: [{
name: 'fonts',
script: 'bun',
args: 'run dev',
interpreter: 'none',
watch: true,
ignore_watch: ['node_modules', 'logs'],
env: {
NODE_ENV: 'development'
},
log_date_format: 'YYYY-MM-DD HH:mm:ss Z'
}]
}