Archived
1
0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/resources/js/modules/websockets.js
2022-01-12 00:35:37 +01:00

14 lines
265 B
JavaScript
Executable File

window.Pusher = require('pusher-js');
import Echo from "laravel-echo"
window.Echo = new Echo({
broadcaster: 'pusher',
key: 'cyca',
cluster: 'mt1',
forceTLS: false,
disableStats: true,
wsHost: window.location.hostname,
wsPort: 6001
});