11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
import axios from 'axios'
|
|
|
|
const Axios = axios.create({
|
|
// baseURL: "http://localhost:5000/",
|
|
// baseURL: 'https://leadesh-whatsapp.onrender.com',
|
|
// baseURL: "https://api.leadesh.com/",
|
|
baseURL: 'https://leadesh-api-github.onrender.com/', // latest is this one
|
|
})
|
|
|
|
export default Axios
|