I have webpack configured and when i used to run webpack-dev-server --inline --config webpack.js
locally i was working.
Now I am running this command remotely while still reading my local files, but hot reload is not working. Which configuration needs to change for the webpack to read the file changes from local.
And I have tried a lot of stuff that i found around here with no luck.
devServer: {
contentBase: 'src',
hot: true,
inline: true,
port: 8080,
}