Fix: API_BASE_URL to /

This commit is contained in:
2025-07-04 17:01:54 -03:00
parent 2a27207b41
commit 4f6e833a20
2 changed files with 7 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ import axios from 'axios';
// Durante el desarrollo, nuestra API corre en un puerto específico (ej. 5045).
// En producción, esto debería apuntar a la URL real del servidor donde se despliegue la API.
const API_BASE_URL = 'http://192.168.10.78:5045/api';
const API_BASE_URL = '/';
const apiClient = axios.create({
baseURL: API_BASE_URL,