LoginSignup
0
0

More than 5 years have passed since last update.

GitHub pages/Netlifyにおけるreactルーティングまとめ

Last updated at Posted at 2018-10-01

CRAで作ったreactアプリを

  • GitHub pages
  • Netlify

で公開してみたときに気づいたまとめです。

サービスによるルーティング設定の違い

GitHub pages

pushStateへの対応方法

  1. pushStateを使わずhashRouter(#など)を使う
  2. routeパスに{process.env.PUBLIC_URL}を追加する。

Gh-pages deployment problems with react-router

Netlify

pushStateへの対応方法

1.publicフォルダに以下の内容の_redirectsファイルを作成する。

/*    /index.html   200

History Pushstate and Single Page Apps

初めてnetlify使ったのですが、以下の記事を参考にさせていただきました。

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