chore: 개발용 ecosystem config 수정

- 파일명 오타 수정
- 스크립트 수정
This commit is contained in:
Daseul Kim 2025-06-26 15:07:29 +09:00
parent 7b8a537a34
commit 247ecef760
2 changed files with 9 additions and 10 deletions

View File

@ -1,10 +0,0 @@
module.exports = {
apps: [
{
name: 'on-site-survey',
script: 'node_modules/next/dist/bin/next',
instances: 1,
exec_mode: 'fork',
},
],
}

9
dev.ecosystem.config.js Normal file
View File

@ -0,0 +1,9 @@
module.exports = {
apps: [
{
name: 'on-site-survey',
script: 'pnpm',
args: 'run start:dev',
},
],
}