UNPKG

custome_own-package

Version:
19 lines (13 loc) 486 B
import axios from 'axios'; const baseApiInstance = axios.create({ baseURL: process.env.BASE_API_URL, headers: { 'Content-Type': 'application/json', }, }); const attachRequestInterceptor = () => baseApiInstance.interceptors.request.use(onFullFilled, onRejected); const attachResponseInterceptor = () => baseApiInstance.interceptors.response.use(onFullFilled, onRejected); export { attachRequestInterceptor, attachResponseInterceptor }; export default baseApiInstance;