16 lines
460 B
Plaintext
16 lines
460 B
Plaintext
# Frontend Environment Variables
|
|
# Copy this file to .env.local for local development
|
|
|
|
# ===================
|
|
# API CONFIGURATION
|
|
# ===================
|
|
|
|
# Backend API URL (must include /api path)
|
|
# Default for development: http://localhost:8080/api
|
|
VITE_API_URL=http://localhost:8080/api
|
|
|
|
# WebSocket URL (must include /ws path)
|
|
# Default for development: ws://localhost:8080/ws
|
|
# Use wss:// for production (secure WebSocket)
|
|
VITE_WS_URL=ws://localhost:8080/ws
|