Update bootstrap.ts

This commit is contained in:
Dane Everitt 2018-12-30 10:41:36 -08:00
parent 6330d6579f
commit 3b553beac6
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -1,5 +1,6 @@
import axios from './helpers/axios';
// @ts-ignore
window._ = require('lodash');
/**
@ -9,9 +10,11 @@ window._ = require('lodash');
*/
try {
// @ts-ignore
window.$ = window.jQuery = require('jquery');
} catch (e) {}
// @ts-ignore
window.axios = axios;
/**
@ -23,7 +26,10 @@ window.axios = axios;
let token = document.head.querySelector('meta[name="csrf-token"]');
if (token) {
// @ts-ignore
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
// @ts-ignore
window.X_CSRF_TOKEN = token.content;
} else {
console.error('CSRF token not found in document.');