46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
|
import axios from 'axios'
|
||
|
|
||
|
// https://github.com/alvar0hurtad0/drupal-vuejs-todo/blob/master/frontend/src/api/axiosInterceptor.js
|
||
|
|
||
|
// console.log('drupalSettings', drupalSettings)
|
||
|
// console.log('window.location.origin', window.location.origin)
|
||
|
|
||
|
// axios.interceptors.response.use(
|
||
|
// response => {
|
||
|
// return Promise.resolve(response)
|
||
|
// },
|
||
|
// error => {
|
||
|
// const { status } = error.response
|
||
|
// console.warn('error in rest-axios', status)
|
||
|
// if (status === 403) {
|
||
|
// window.location = '/'
|
||
|
// }
|
||
|
// return Promise.reject(error)
|
||
|
// }
|
||
|
// )
|
||
|
|
||
|
const REST = axios.create({
|
||
|
baseURL: `${window.location.origin}`,
|
||
|
withCredentials: true,
|
||
|
headers: {
|
||
|
// Authorization: 'Bearer {token}',
|
||
|
'Content-Type': 'application/json'
|
||
|
}
|
||
|
})
|
||
|
|
||
|
REST.interceptors.response.use(
|
||
|
response => {
|
||
|
return Promise.resolve(response)
|
||
|
},
|
||
|
error => {
|
||
|
const { status } = error.response
|
||
|
console.warn('error in rest-axios', status)
|
||
|
// if (status === 403) {
|
||
|
// window.location = '/'
|
||
|
// }
|
||
|
return Promise.reject(error)
|
||
|
}
|
||
|
)
|
||
|
|
||
|
export default REST
|