2024-04-23 05:17:21 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
2025-11-04 15:31:33 +00:00
|
|
|
const baseURL = "https://layananpemerintahri.com/api";
|
2024-04-23 05:17:21 +00:00
|
|
|
|
|
|
|
|
const axiosInterceptorInstance = axios.create({
|
|
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"content-type": "application/json",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosInterceptorInstance;
|