13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import axios from "axios";
|
|
|
|
export const axiosLocalhost = axios.create(
|
|
{
|
|
baseURL: `http://127.0.0.1:9876/`,
|
|
withCredentials: true,
|
|
headers: {
|
|
|
|
}
|
|
}
|
|
)
|
|
|
|
axios.defaults.withCredentials = true; |