15 lines
413 B
Bash
15 lines
413 B
Bash
# ==============================================
|
|
# 로컬 개발용 (npm run dev)
|
|
# ==============================================
|
|
NODE_ENV=development
|
|
|
|
# 클라이언트 API URL
|
|
NEXT_PUBLIC_API_URL=http://localhost:4000
|
|
|
|
# 서버사이드 프록시용 (next.config.ts rewrites)
|
|
BACKEND_INTERNAL_URL=http://localhost:4000
|
|
|
|
# 앱 설정
|
|
NEXT_PUBLIC_APP_NAME=한우 유전능력 시스템
|
|
NEXT_TELEMETRY_DISABLED=1
|