2024-04-04 10:30:07 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
2025-11-04 15:31:33 +00:00
|
|
|
const baseURL = "https://layananpemerintahri.com/api";
|
2024-04-04 10:30:07 +00:00
|
|
|
|
|
|
|
|
const axiosBaseInstance = axios.create({
|
2024-11-06 08:44:56 +00:00
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"content-type": "application/json",
|
|
|
|
|
},
|
2025-04-11 06:38:38 +00:00
|
|
|
withCredentials: true,
|
2024-04-04 10:30:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosBaseInstance;
|