Hi I'm trying to deploy my reactjs app to GitHub pages but I keep getting a blank page here are the steps I followed
Pushing project to empty repo: https://github.com/DroidBarber/dolla
installing gh-pages:
npm install gh-pages --save-dev
modifying package.json :
{
"homepage": "https://DroidBarber.github.io/dolla/",
},
scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
},
- deploying
npm run deploy
but I'm getting a blank page app runs fine in local host...
Help...