1234567891011121314151617 |
- import axios from 'axios'
- console.log(window.location);
- export const MGQ = axios.create({
- baseURL: window.location.origin+`/mgq`,
- withCredentials: true,
- headers: {
- 'Accept': 'application/json',
-
-
- "Content-Type": "application/json"
- }
- })
|