Teren-app/resources/js/bootstrap.js
Simon Pocrnjič 7227c888d4 Mager updated
2025-09-27 17:45:55 +02:00

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');
}