chore: 실행 스크립트 원복

This commit is contained in:
Daseul Kim 2025-06-30 14:01:22 +09:00
parent decaca10d4
commit a98bfb5aca
2 changed files with 1 additions and 6 deletions

View File

@ -3,13 +3,8 @@ module.exports = {
{
name: 'on-site-survey',
script: 'node_modules/next/dist/bin/next',
args: 'start',
instances: 2,
exec_mode: 'cluster',
env_file: '.env.production',
env: {
NODE_ENV: 'production',
},
},
],
}

View File

@ -8,7 +8,7 @@
"start": "next start",
"build:local": "env-cmd -f .env.localhost next build",
"build:dev": "env-cmd -f .env.development next build",
"build:prod": "set NODE_ENV=production && env-cmd -f .env.production next build",
"build:prod": "env-cmd -f .env.production next build",
"start:local": "env-cmd -f .env.localhost next start",
"start:dev": "env-cmd -f .env.development next start",
"start:prod": "env-cmd -f .env.production next start",