12 lines
530 B
Plaintext
12 lines
530 B
Plaintext
# Base URL of the Django backend (must include /api/ if your axios baseURL expects it).
|
|
VITE_BACKEND_URL="http://localhost:8000/api/"
|
|
VITE_BACKEND_WS_URL="ws://localhost:8000/"
|
|
|
|
# Optional override for the WebSocket base. If unset, derived from VITE_BACKEND_URL
|
|
# (the `/api` suffix is stripped automatically; only the host is used).
|
|
# VITE_WS_URL="ws://localhost:8000"
|
|
|
|
# Auth endpoints (defaults match Django routes; only override if you changed them).
|
|
# VITE_API_REFRESH_URL=/api/token/refresh/
|
|
# VITE_LOGIN_PATH=/social/login
|