11 lines
450 B
Bash
11 lines
450 B
Bash
# Copy to .env.local to override. Both values have working defaults.
|
|||
|
|
|
||
|
|
# Base URL the SPA uses for REST API calls.
|
||
|
|
# Default: /api (relative — served through the dev-server proxy below)
|
||
|
|
VITE_API_BASE_URL=/api
|
||
|
|
|
||
|
|
# Where the Vite dev server forwards /api requests.
|
||
|
|
# Default: http://localhost:8080 (the Dockerised API published on the host)
|
||
|
|
# The compose "frontend" profile sets this to http://app:80 instead.
|
||
|
|
VITE_PROXY_TARGET=http://localhost:8080
|