15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
import axios from "axios";
|
|
|
|
const baseURL = "https://kontenhumas.com/api/";
|
|
|
|
const axiosBaseInstance = axios.create({
|
|
baseURL,
|
|
headers: {
|
|
"content-type": "application/json",
|
|
"X-Client-Key": "b1ce6602-07ad-46c2-85eb-0cd6decfefa3",
|
|
},
|
|
withCredentials: true,
|
|
});
|
|
|
|
export default axiosBaseInstance;
|