node -v
): 7.4.0npm -v
): 4.4.1npm run hot
doesn't work in windows anymore. I'm opening localhost:8080/js/app.js
and get the response Cannot GET /js/app.js
. #78
It works in 0.8.8 but not in 0.8.8. Is the problem maybe in c3da413
I fixed it in laravel-mix 0.9.2, windows 10, follow below steps:
I added slash to end of 'http://localhost:8080'
Hey thank you this works for me.
@JeffreyWay if you see this as an workaround, feel free to open the issue again :)
Removing public from webpack.mix.js fixed it for me. Thanks @vutrungduc7593!
Most helpful comment
I fixed it in laravel-mix 0.9.2, windows 10, follow below steps:
mix.webpackConfig({
output: {
publicPath: 'http://localhost:8080/'
}
})
I added slash to end of 'http://localhost:8080'