1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Reactでnpm run buildした際に何も表示されない時の対処法

Posted at

事象

  • npm run buildして、生成されたbuildディレクトリのindex.htmlを開いても真っ白で何も表示されない。
  • 開発者ツールを確認しても特にエラーは表示されていない。

対策

  • デフォルトで表示するコンポーネントを指定する
  • ビルド後のファイルからjsを参照できるようにする

デフォルトコンポーネントの指定

Routerの中にpathを指定しないコンポーネントを追加する。

これでデフォルトで表示するコンポーネントを設定できます。

App.tsx
<Router>
  <div>
    <Route component={Home}/>
  </div>
</Router>

ビルド後のファイルからjsを参照できるようにする

やることはpackage.json"homepage": "./",を追加するだけです。

package.json
{
   "name": "react-material-ui-sample",
   "version": "0.1.0",
   "private": true,
   "homepage": "./",

参考リンク

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?