iagofp's picture
fix: usar rutas relativas en producci贸n para llamadas a la API
c33f6e4
// 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;