2025-12-01 15:30:04 +09:00
|
|
|
# =============================================================================
|
|
|
|
|
# Customer Portal Frontend (Next.js) - Production Environment
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Copy to portal-frontend.env
|
2025-12-11 18:47:24 +09:00
|
|
|
# Note: NEXT_PUBLIC_* variables are embedded at BUILD time
|
2025-12-01 15:30:04 +09:00
|
|
|
# =============================================================================
|
|
|
|
|
|
2025-09-01 15:11:42 +09:00
|
|
|
NODE_ENV=production
|
|
|
|
|
|
2025-12-11 18:47:24 +09:00
|
|
|
# Application identity shown in UI
|
2025-09-01 15:11:42 +09:00
|
|
|
NEXT_PUBLIC_APP_NAME=Assist Solutions Portal
|
|
|
|
|
NEXT_PUBLIC_APP_VERSION=1.0.0
|
2025-12-01 15:30:04 +09:00
|
|
|
|
2025-12-11 18:47:24 +09:00
|
|
|
# API endpoint - use /api for same-origin requests behind nginx proxy
|
|
|
|
|
# In production, nginx proxies /api/* to the BFF container
|
2025-09-01 15:11:42 +09:00
|
|
|
NEXT_PUBLIC_API_BASE=/api
|
|
|
|
|
|
2025-12-01 15:30:04 +09:00
|
|
|
# Disable React Query devtools in production
|
|
|
|
|
NEXT_PUBLIC_ENABLE_DEVTOOLS=false
|