aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/utils/http.ts
blob: d49fad4f1437a864ef82faf9b9f47139f2c4e748 (plain) (blame)
1
2
3
4
5
6
7
8
9
import axios from "axios";

const serviceAxios = axios.create({
  baseURL: "", 
  timeout: 3 * 1000, 
  withCredentials: false, 
});

export default serviceAxios;