DEV Community

Lautaro Suarez
Lautaro Suarez

Posted on

Blank Screen when deploying react app in gh-pages

I'm going to explain really quickly how to make it work your react page when deploying on gh-pages

If you're using react-router-dom BrowserRouter is almost for sure that it will not work and just will show your screen white or just nothing.

You will have to replace it with HashRouter

import {HashRouter} from 'react-router-dom'

I share this cause it was a problem that i had, hope someone found it helpful.

Top comments (0)

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

👋 Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay