a440daa
1
2
3
4
5
6
7
8
9
10
11
import axios from "axios"; const api = axios.create({ baseURL: "/api", // same domain, backend mounted under /api headers: { "Content-Type": "application/json" } }); export default api;