Spaces:
Running
Running
| // API Base URL configuration | |
| // Uses environment variable VITE_API_BASE_URL if available | |
| // Falls back to localhost:5000 for local development | |
| const API_BASE_URL = import.meta.env.VITE_API_BASE_URL ?? (import.meta.env.PROD ? "" : "http://localhost:5000"); | |
| export default API_BASE_URL; | |