2024-04-04 10:30:07 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
2025-05-17 15:17:34 +00:00
|
|
|
const baseURL = "https://www.humas.polri.go.id/api";
|
|
|
|
|
// const baseURL = "http://10.200.202.141:8802";
|
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;
|