我在本地使用Laravel回声,因此在使用
forceTLS: false
在bootstrap.js中
window.Echo = new Echo({
broadcaster: 'pusher',
key: 'local',
cluster: process.env.MIX_PUSHER_APP_CLUSTER,
encrypted: true,
disableStats: true,
wsHost: window.location.hostname,
wsPort: 6001,
forceTLS: false,
});
但是当我添加
时forceTLS: false
上面代码块中的代码我遇到错误
InvalidArgumentException: Auth guard [admin] is not defined.
当我将其注释掉时,该错误不再存在。我尝试过
php artisan config:clear and php artisan config:cache
但是我仍然遇到相同的错误。