tissue/resources/assets/js/bootstrap.ts

18 lines
396 B
TypeScript
Raw Normal View History

// jQuery
import './tissue';
2017-08-27 04:44:53 +09:00
// Setup global request header
const token = document.head.querySelector<HTMLMetaElement>('meta[name="csrf-token"]');
if (!token) {
2017-08-27 04:44:53 +09:00
console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
} else {
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': token.content
}
});
2017-08-27 04:44:53 +09:00
}
// Bootstrap
import 'bootstrap';