.env.example
346 bytes
| 1 | # Copy to .env — the Vue app reads this at build/dev time. |
|---|---|
| 2 | # Point it at your running backend's versioned API base (note the trailing slash). |
| 3 | # Local backend (docker compose) examples: |
| 4 | # Clean/Onion backend -> http://localhost:84/api/v1/ |
| 5 | # Modular Monolith -> http://localhost:90/api/v1/ |
| 6 | VITE_API_BASE_URL=http://localhost:84/api/v1/ |
| 7 | |