16fe912fbd
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
15 lines
349 B
JavaScript
Executable file
15 lines
349 B
JavaScript
Executable file
import axios from 'axios';
|
|
import { APP_BASE_URL } from 'widget/helpers/constants';
|
|
|
|
export const API = axios.create({
|
|
baseURL: APP_BASE_URL,
|
|
withCredentials: false,
|
|
});
|
|
|
|
export const setHeader = (key, value) => {
|
|
API.defaults.headers.common[key] = value;
|
|
};
|
|
|
|
export const removeHeader = key => {
|
|
delete API.defaults.headers.common[key];
|
|
};
|