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)