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)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay