usar https para las peticiones a la api desde la UI
All checks were successful
build-and-deploy / filter (push) Successful in 1s
build-and-deploy / build (push) Successful in 9s
build-and-deploy / deploy (push) Successful in 26s

This commit is contained in:
2025-06-05 02:54:23 -06:00
parent cf73bd0889
commit d570eec221

View File

@@ -1,7 +1,7 @@
import axios from 'axios'; import axios from 'axios';
// forzar subida // forzar subida
const apiClient = axios.create({ const apiClient = axios.create({
baseURL: 'http://planilla.interno.com', // Using the container name and API port baseURL: 'https://planilla.interno.com', // Using the container name and API port
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },