13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
|
|
import axios from "axios";
|
||
|
|
|
||
|
|
const baseURL = "https://disestages.com/api";
|
||
|
|
|
||
|
|
const axiosDisestagesInstance = axios.create({
|
||
|
|
baseURL,
|
||
|
|
headers: {
|
||
|
|
"content-type": "application/json",
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default axiosDisestagesInstance;
|