2025-10-06 05:34:41 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
const baseURL = "https://dev.mikulnews.com/api";
|
|
|
|
|
|
|
|
|
|
const axiosBaseInstance = axios.create({
|
|
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
2025-10-12 13:06:23 +00:00
|
|
|
"X-Client-Key": "e934614d-867a-4ff2-9c11-f782ee76624e",
|
2025-10-06 05:34:41 +00:00
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosBaseInstance;
|