im new to coding and need some help. I made a react project (using create-react-app), and the website has been running on my gh-pages branch
(heres my repo: https:/
Simcha's solution worked for me temporarily. Every time I was deploying to Github pages, the index.html file was automatically reverted back to "/theNameOfMyApp/static/...
. So I managed to get rid of this problem, by removing the "/theNameOfMyApp"
part from the homepage: ...
in package.json. So in package.json there I have: "homepage": "http://themitsoss.github.io"
.