Mager updated
This commit is contained in:
Vendored
+6
@@ -2,3 +2,9 @@ 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');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user