14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
|
import axios from "axios";
|
||
|
|
||
|
/* --------Connecting to the endpoint server------- */
|
||
|
export const ApiConnect3 = axios.create({
|
||
|
// baseURL: "http://localhost:3000/api",
|
||
|
// baseURL: "https://gate.obananapay.com/api/",
|
||
|
baseURL:'https://gate.obpay.online/api/',
|
||
|
//
|
||
|
responseType: "json",
|
||
|
// withCredentials: true,
|
||
|
});
|
||
|
|
||
|
export default ApiConnect3;
|