mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
window._ = require('lodash');
|
|
|
|
/**
|
|
* Polyfill the global environment to add Promise support for Internet Explorer.
|
|
*/
|
|
require('es6-promise/auto');
|
|
|
|
/**
|
|
* Vue is a modern JavaScript library for building interactive web interfaces
|
|
* using reactive data binding and reusable components. Vue's API is clean
|
|
* and simple, leaving you to focus on building your next great project.
|
|
*/
|
|
|
|
window.Vue = require('vue');
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
window.axios = require('axios');
|
|
|
|
/**
|
|
* Echo exposes an expressive API for subscribing to channels and listening
|
|
* for events that are broadcast by Laravel. Echo and event broadcasting
|
|
* allows your team to easily build robust real-time web applications.
|
|
*/
|
|
|
|
// import Echo from "laravel-echo"
|
|
|
|
// window.Echo = new Echo({
|
|
// broadcaster: 'pusher',
|
|
// key: 'your-pusher-key'
|
|
// });
|