Zmień mieszankę laravel, aby działać na innym porcie
// All you need to do is add the following port configs to webpack.mix.js file
mix.options({
hmrOptions: {
host: 'localhost',
port: '8079'
},
});
mix.webpackConfig({
devServer: {
port: '8079'
},
});
PDXfoster