|
@@ -1 +1,15 @@
|
|
-require('./bootstrap');
|
|
|
|
|
|
+window._ = require('lodash');
|
|
|
|
+window.Popper = require('popper.js').default;
|
|
|
|
+window.pixelfed = window.pixelfed || {};
|
|
|
|
+window.$ = window.jQuery = require('jquery');
|
|
|
|
+require('bootstrap');
|
|
|
|
+window.axios = require('axios');
|
|
|
|
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
|
|
|
+require('readmore-js');
|
|
|
|
+
|
|
|
|
+let token = document.head.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');
|
|
|
|
+}
|