LoginSignup
24
11

More than 5 years have passed since last update.

webpack-dev-serverで起動したアプリが「Invalid Host header」と表示される場合の対処法

Posted at

事象

以下のコマンドを実行し、アプリケーションを起動した際に

npm run dev

以下のコードが出て、アプリケーションが起動できない

Invalid Host header

対応

webpack.config.jsに「disableHostCheck: true」を追記

webpack.config.js
module.exports = {
  devServer: {
    disableHostCheck: true
  }
}
24
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
11