Closed
Description
I'd like to show script errors like the screenshot below. Is there a way to do it with webpack devserver
Here is my webpack config
entry: './app/index.js',
output: {
filename: 'bundle.js',
path: path.join(__dirname, buildFolder),
publicPath: publicPath
},
devServer: {
contentBase: buildFolder
}
Here is I start the dev server:
webpack-dev-server --inline --hot