Fix build script in package.json to correctly reference the production environment file.

This commit is contained in:
yoosangwook 2025-05-29 16:49:17 +09:00
parent 308e41ac26
commit 27e923ecd4

View File

@ -5,7 +5,7 @@
"scripts": {
"dev": "env-cmd -f .env.localhost next dev",
"local:dev": "env-cmd -f .env.local.dev next dev",
"build": "env-cmd -f .env.productionnext build",
"build": "env-cmd -f .env.production next build",
"build:dev": "env-cmd -f .env.development next build",
"build:local.dev": "env-cmd -f .env.local.dev next build",
"start:cluster1": "env-cmd -f .env.production next start -p 5000",