15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
import axios from 'axios';
|
|
// forzar subida
|
|
|
|
const baseURL = import.meta.env.VITE_API_DB_URL || window?.RUNTIME_CONFIG?.VITE_API_DB_URL || 'http://localhost:4000';
|
|
console.log(baseURL);
|
|
|
|
const apiClient = axios.create({
|
|
baseURL,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
});
|
|
|
|
export default apiClient;
|