add: preparar archivos para hacer la petición al nuevo endpoint "build"

This commit is contained in:
Alexis
2026-03-27 11:19:11 +01:00
parent cced6d3923
commit 7da263732c
3 changed files with 52 additions and 24 deletions
+13
View File
@@ -0,0 +1,13 @@
import Axios from 'axios';
import { API_BASE_URL } from '../config';
const api = Axios.create({
baseURL: API_BASE_URL,
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
});
export default api;