tweaking default setup
This commit is contained in:
parent
47c0b45861
commit
655dbadd1e
|
@ -25,3 +25,7 @@ MAIL_PORT=2525
|
||||||
MAIL_USERNAME=null
|
MAIL_USERNAME=null
|
||||||
MAIL_PASSWORD=null
|
MAIL_PASSWORD=null
|
||||||
MAIL_ENCRYPTION=null
|
MAIL_ENCRYPTION=null
|
||||||
|
|
||||||
|
PUSHER_KEY=
|
||||||
|
PUSHER_SECRET=
|
||||||
|
PUSHER_APP_ID=
|
||||||
|
|
|
@ -30,3 +30,16 @@ Vue.http.interceptors.push(function (request, next) {
|
||||||
|
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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({
|
||||||
|
// connector: 'pusher',
|
||||||
|
// key: 'your-pusher-key'
|
||||||
|
// });
|
||||||
|
|
Loading…
Reference in New Issue