2024-12-04 17:28:40 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
const baseURL = "https://netidhub.com/api/";
|
|
|
|
|
|
|
|
|
|
const axiosBaseInstance = axios.create({
|
|
|
|
|
baseURL,
|
|
|
|
|
headers: {
|
|
|
|
|
"content-type": "application/json",
|
|
|
|
|
},
|
2025-01-09 19:34:39 +00:00
|
|
|
withCredentials: true,
|
2024-12-04 17:28:40 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosBaseInstance;
|