2019-05-31 15:01:54 +02:00
|
|
|
import axios from 'axios'
|
|
|
|
|
|
|
|
// https://github.com/alvar0hurtad0/drupal-vuejs-todo/blob/master/frontend/src/api/axiosInterceptor.js
|
|
|
|
|
2021-03-31 18:42:05 +02:00
|
|
|
// console.log('drupalSettings', drupalSettings)
|
2019-05-31 15:01:54 +02:00
|
|
|
|
2019-05-31 23:05:37 +02:00
|
|
|
export const MA = axios.create({
|
|
|
|
baseURL: window.location.origin + '/' + drupalSettings.path.pathPrefix,
|
2019-05-31 15:01:54 +02:00
|
|
|
withCredentials: true,
|
|
|
|
headers: {
|
2021-03-31 18:42:05 +02:00
|
|
|
'Content-Type': 'application/json'
|
2020-11-24 14:07:10 +01:00
|
|
|
// "X-CSRF-Token": "csrf_token"
|
2019-05-31 15:01:54 +02:00
|
|
|
}
|
|
|
|
})
|