- Added nestjs-pino dependency to pnpm-lock.yaml for improved logging capabilities. - Updated Dockerfile to include a custom entrypoint script for better container management. - Modified health controllers to include @Public() decorator for public access. - Cleaned up environment variable samples for clarity and added new variables for Freebit integration. - Adjusted Content Security Policy in next.config.mjs to allow inline scripts/styles for Next.js compatibility. - Refactored ReissueSimModal to specify simType during eSIM reissue requests.
19 lines
698 B
Plaintext
19 lines
698 B
Plaintext
# =============================================================================
|
|
# Customer Portal Frontend (Next.js) - Production Environment
|
|
# =============================================================================
|
|
# Copy to portal-frontend.env
|
|
# Note: NEXT_PUBLIC_* variables are embedded at build time
|
|
# =============================================================================
|
|
|
|
NODE_ENV=production
|
|
|
|
# Application name shown in UI
|
|
NEXT_PUBLIC_APP_NAME=Assist Solutions Portal
|
|
NEXT_PUBLIC_APP_VERSION=1.0.0
|
|
|
|
# API endpoint - use /api for same-origin requests behind reverse proxy
|
|
NEXT_PUBLIC_API_BASE=/api
|
|
|
|
# Disable React Query devtools in production
|
|
NEXT_PUBLIC_ENABLE_DEVTOOLS=false
|