11 lines
407 B
JavaScript
11 lines
407 B
JavaScript
import axios from 'axios';
|
|
window.axios = axios;
|
|
|
|
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
|
|
|
// Ensure CSRF token is sent with axios requests (useful when not relying on XSRF cookie)
|
|
const token = document.head && document.head.querySelector('meta[name="csrf-token"]');
|
|
if (token) {
|
|
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.getAttribute('content');
|
|
}
|