Replaces hardcoded production API URLs with localhost defaults for local development in both server and client code. Updates Dockerfile to require API URLs via deployment environment variables. Improves ChatTable to use a batch endpoint for chats and unread counts, with backward compatibility. Adds an env.example file to document required environment variables. Updates next.config.mjs to use environment variables for backend API rewrites and image domains.
24 lines
841 B
Plaintext
24 lines
841 B
Plaintext
# Frontend Environment Configuration
|
|
# Copy this file to .env.local for development or .env for production
|
|
|
|
# ===========================================
|
|
# FRONTEND CONFIGURATION (Safe for browser)
|
|
# ===========================================
|
|
NEXT_PUBLIC_API_URL=/api
|
|
|
|
# ===========================================
|
|
# BACKEND CONFIGURATION (Server-side only)
|
|
# ===========================================
|
|
# Replace with your actual backend domain
|
|
SERVER_API_URL=https://internal-api.inboxi.ng/api
|
|
API_BASE_URL=https://internal-api.inboxi.ng
|
|
API_HOSTNAME=internal-api.inboxi.ng
|
|
|
|
# ===========================================
|
|
# DEVELOPMENT OVERRIDES
|
|
# ===========================================
|
|
# For local development, uncomment these:
|
|
# SERVER_API_URL=http://localhost:3001/api
|
|
# API_BASE_URL=http://localhost:3001
|
|
# API_HOSTNAME=localhost
|