aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/client.ts
blob: a9499cc7249f053e1e25aba3370b24d13cfb6346 (plain) (blame)
1
2
3
4
5
6
7
import axios from "axios";


export default axios.create({
    baseURL: process.env.BACKEND_URL,
    withCredentials: true
});