| 123456789101112131415161718192021 |
- import 'bootstrap';
- /**
- * We'll load the axios HTTP library which allows us to easily issue requests
- * to our Laravel back-end. This library automatically handles sending the
- * CSRF token as a header based on the value of the "XSRF" token cookie.
- */
- import axios from 'axios';
- window.axios = axios;
- window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
- import $ from 'jquery';
- window.$ = $;
- import * as bootstrap from 'bootstrap'
- window.bootstrap = bootstrap;
- import Lightbox from 'bs5-lightbox';
- window.lightbox = Lightbox;
|