2024-11-07 23:45:34 +05:30
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
const axiosInstance = axios.create({
|
2024-11-13 20:25:19 +05:30
|
|
|
// baseURL: `http://localhost:3000/api/v1`,
|
|
|
|
|
baseURL: `https://livepoll-anjx.onrender.com/api/v1`,
|
2024-11-08 22:12:16 +05:30
|
|
|
withCredentials: true,
|
|
|
|
|
headers: {
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
},
|
2024-11-07 23:45:34 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default axiosInstance;
|