Michael Bowman
Michael Bowman

Reputation: 245

Can't get rid of webpack-dev-server status bar

I am not able to remove the 'App ready' status bar at the top of my page when building and using the localhost URL provided by webpack-dev-server. Here are the following things I've found and the steps I've taken:

In all of these tests and reconfigurations, I am using the --inline parameter to run the server. What am I missing?

Upvotes: 3

Views: 969

Answers (1)

Alex Ivasyuv
Alex Ivasyuv

Reputation: 8844

Check you webpack.config.js for devServer section. They can override you passing options to webpack-dev-server. For example, there could be inline: false that will prevent passing --inline options to webpack-dev-server from CLI.

Upvotes: 1

Related Questions