From 4690197ca4e63e4fcc29e0e56ea0be4b12c87b95 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Fri, 30 May 2025 10:02:11 -0600 Subject: [PATCH] arreglado problema de CORS --- ui/src/apiClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/apiClient.js b/ui/src/apiClient.js index d35ddb8..0507b33 100644 --- a/ui/src/apiClient.js +++ b/ui/src/apiClient.js @@ -1,7 +1,7 @@ import axios from 'axios'; const apiClient = axios.create({ - baseURL: 'https://server.interno.com', // Using the container name and API port + baseURL: 'https://planilla.interno.com', // Using the container name and API port headers: { 'Content-Type': 'application/json', },