web-humas-fe/services/http-config/mediahub-base-service.ts

13 lines
239 B
TypeScript
Raw Normal View History

2024-04-24 04:14:06 +00:00
import axios from "axios";
2025-09-24 12:25:50 +00:00
const baseURL = "https://mediahub.polri.go.id/api/v2";
2024-04-24 04:14:06 +00:00
const mediahubBaseInstance = axios.create({
2025-09-24 12:25:50 +00:00
baseURL,
headers: {
"content-type": "application/json",
},
2024-04-24 04:14:06 +00:00
});
export default mediahubBaseInstance;