mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 04:16:00 +00:00
15 lines
272 B
JavaScript
15 lines
272 B
JavaScript
import axios from 'axios';
|
|
import resolveApi from './resolveApi';
|
|
|
|
const axiosInstance = axios.create({
|
|
baseURL: resolveApi(),
|
|
});
|
|
|
|
axiosInstance.defaults.headers = {
|
|
'Cache-Control': 'no-cache',
|
|
Pragma: 'no-cache',
|
|
Expires: '0',
|
|
};
|
|
|
|
export default axiosInstance;
|