LoginSignup
5
5

More than 5 years have passed since last update.

React-routerでリロードすると404エラーや cannot GET になる時のWebpack設定メモ

Posted at

React-routerでリロードすると404エラーやcannnot GETが出てハマりました。

解決方法

webpack.config.jsに以下の記述をすると直りました。

  devServer: {
      contentBase: './dist', 
      inline: true,
      host: 'localhost',
      port: 8081,
      stats: 'errors-only',
      historyApiFallback: true //←ここ追加
    },

yarn startして再起動するとおそらく解決するかと思います。

5
5
0

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
5
5