2025-05-19 03:33:49 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
// const baseURL = "http://10.200.202.141:8802";
|
2025-05-20 04:43:13 +00:00
|
|
|
const baseURL = "https://kontenhumas.com/api-bridge";
|
2025-05-19 03:33:49 +00:00
|
|
|
|
|
|
|
|
const axiosInterceptorInstanceHumas = axios.create({
|
|
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"content-type": "application/json",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosInterceptorInstanceHumas;
|