client portal update
This commit is contained in:
@@ -1,27 +1,13 @@
|
||||
import axios from 'axios';
|
||||
// config
|
||||
import { HOST_API } from '../config';
|
||||
|
||||
import { getSession } from './token';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
const token = getSession();
|
||||
|
||||
const axiosInstance = axios.create({
|
||||
baseURL: HOST_API,
|
||||
// headers: {
|
||||
// 'X-Requested-With': 'XMLHttpRequest',
|
||||
// },
|
||||
// withCredentials: true,
|
||||
// headers: {
|
||||
// Authorization: `Bearer ${token}`
|
||||
// }
|
||||
});
|
||||
|
||||
axiosInstance.interceptors.response.use(
|
||||
(response) => response,
|
||||
(error) => Promise.reject((error) || 'Something went wrong')
|
||||
(error) => Promise.reject(error || 'Something went wrong')
|
||||
);
|
||||
|
||||
export default axiosInstance;
|
||||
|
||||
Reference in New Issue
Block a user