8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import axios from 'axios';
|
|
|
|
export const http = axios.create();
|
|
|
|
export const setHeader = (header: string, value: string) => {
|
|
http.defaults.headers[header] = value;
|
|
};
|