All checks were successful
Build Frontend / Build Frontend (push) Successful in 21s
Frontend will now fetch WebSocket URL from backend /api/config/public This allows controlling WebSocket URL from backend .env only
17 lines
432 B
Plaintext
17 lines
432 B
Plaintext
# Production Environment Variables for Frontend
|
|
# These are embedded at build time by Vite
|
|
|
|
# API URL - Backend API endpoint
|
|
VITE_API_URL=https://api.turbotrades.dev
|
|
|
|
# WebSocket URL - Backend WebSocket endpoint
|
|
# Commented out to fetch from backend /api/config/public instead
|
|
# VITE_WS_URL=wss://api.turbotrades.dev/ws
|
|
|
|
# App Configuration
|
|
VITE_APP_NAME=TurboTrades
|
|
VITE_APP_ENV=production
|
|
|
|
# Feature Flags
|
|
VITE_ENABLE_DEBUG=false
|