﻿const instance = axios.create({
    baseURL: 'http://vnmap3d.vn:8081/api',
    timeout: 3000,
    headers: {
        'X-Custom-Header': 'foobar',
        'Authorization': 'Bearer ' + localStorage.getItem("tokenId"),
        "Access-Control-Allow-Origin": "*",
    }
});

// Add a request interceptor
instance.interceptors.request.use(function (config) {
    // Do something before request is sent
    return config;
}, function (error) {
    // Do something with request error
    return Promise.reject(error);
});

// Add a response interceptor
instance.interceptors.response.use(function (response) {
    // Any status code that lie within the range of 2xx cause this function to trigger
    // Do something with response data
    return response.data.data;
}, function (error) {
    // Any status codes that falls outside the range of 2xx cause this function to trigger
    // Do something with response error
    return Promise.reject(error);
});
