.env.example 423 B

123456789
  1. # Backend API URL for Next.js server-side proxy
  2. # This is used by the Next.js server to proxy requests to the NestJS API
  3. # Default: http://localhost:3001
  4. API_URL=http://localhost:3001
  5. # Optional: Direct API connection (bypasses proxy)
  6. # Only set this if you need direct client-to-API communication
  7. # Leave unset to use the built-in proxy (recommended for production)
  8. # NEXT_PUBLIC_WATCH_FINISHED_API=http://localhost:3001