chore: prod 빌드 시 실행모드 명시 추가

This commit is contained in:
Daseul Kim 2025-06-30 10:41:38 +09:00
parent dece53e698
commit 7fcd32df2f

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": "env-cmd -f .env.production next build",
"build:prod": "set NODE_ENV=production && 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",