15 lines
392 B
JavaScript
15 lines
392 B
JavaScript
|
import axios from "axios";
|
||
|
|
||
|
/* --------Connecting to the endpoint server------- */
|
||
|
const ApiConnect = axios.create({
|
||
|
// baseURL: "http://143.42.66.33:8000/api/v1/",
|
||
|
// baseURL: "https://api.obanana.com/api/v1/",
|
||
|
baseURL: "https://api.obanana.shop/api/v1/",
|
||
|
|
||
|
// baseURL:'https://gate.obpay.online/api/',
|
||
|
|
||
|
responseType: "json",
|
||
|
withCredentials: true,
|
||
|
});
|
||
|
export default ApiConnect;
|