| 12345678910111213141516171819202122 |
- import axios from 'axios';
- window.axios = axios;
- window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
- /**
- * Echo exposes an expressive API for subscribing to channels and listening
- * for events that are broadcast by Laravel. Echo and event broadcasting
- * allow your team to quickly build robust real-time web applications.
- */
- import { configureEcho } from "@laravel/echo-vue";
- configureEcho({
- broadcaster: 'reverb',
- key: import.meta.env.VITE_REVERB_APP_KEY,
- wsHost: import.meta.env.VITE_REVERB_HOST,
- wsPort: import.meta.env.VITE_REVERB_PORT ?? 80,
- wssPort: import.meta.env.VITE_REVERB_PORT ?? 443,
- forceTLS: (import.meta.env.VITE_REVERB_SCHEME ?? 'https') === 'https',
- enabledTransports: ['ws', 'wss'],
- });
|