aboutsummaryrefslogtreecommitdiff
path: root/resources/js/bootstrap.js
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-03-13 23:57:41 +0100
committerMateja <mail@matejamaric.com>2021-03-13 23:57:41 +0100
commit2e570c76bda80def3e07ecc3478d8eb95905acbb (patch)
tree8608f5ebf608bdf2bcf245b458970f2346ecb8d6 /resources/js/bootstrap.js
parent865bb1f30a0c4567522525fb0be9fd99bd796ecf (diff)
downloadyota-laravel-2e570c76bda80def3e07ecc3478d8eb95905acbb.tar.gz
yota-laravel-2e570c76bda80def3e07ecc3478d8eb95905acbb.zip
Work on call-sign-filter component.
Diffstat (limited to 'resources/js/bootstrap.js')
-rw-r--r--resources/js/bootstrap.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js
index c3456b8..e5e0ab6 100644
--- a/resources/js/bootstrap.js
+++ b/resources/js/bootstrap.js
@@ -3,9 +3,13 @@ window._ = require('lodash');
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
-window.Vue = require('vue');
-window.Vuex = require('vuex');
-Vue.use(Vuex);
+let token = document.querySelector('meta[name="csrf-token"]');
+
+if (token) {
+ window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
+} else {
+ console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
+}
window.$ = window.jQuery = require('jquery');
window.Popper = require('popper.js');