Ubah Laravel Mix agar berjalan di port yang berbeda
// 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