2025-09-16 08:29:07 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
2025-09-17 01:43:27 +00:00
|
|
|
const baseURL = "https://kontenhumas.com/api/";
|
2025-09-16 08:29:07 +00:00
|
|
|
|
|
|
|
|
const axiosBaseInstance = axios.create({
|
|
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"content-type": "application/json",
|
2025-09-17 01:43:27 +00:00
|
|
|
"X-Client-Key": "b1ce6602-07ad-46c2-85eb-0cd6decfefa3",
|
2025-09-16 08:29:07 +00:00
|
|
|
},
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosBaseInstance;
|