I have a create-react-app
project (https://github.com/khpeek/beomaps/tree/master) which I'd like to deploy to Github pages using gh-pages. Following this tutorial, https://medium.com/@serverlessguru/deploy-reactjs-app-with-s3-static-hosting-f640cb49d7e6, I've added the following to my package.json
:
However, if I run npm run deploy
, it is published,
but the Github page, https://khpeek.github.io/beomaps/, still shows default content based on the README.md
. Do I perhaps need to change the deploy directory?
gh-pages
branch as your Source in the repository's Options. – Girovard