1

I have created a repository and pushed my files into the repo. From settings, I made the github pages source as main branch, it shows that my site is published, but I get a 404. Github Page link Github repoitory Link

happyvirus
  • 279
  • 3
  • 21
  • Does this answer your question? [How to fix HTTP 404 on Github Pages?](https://stackoverflow.com/questions/11577147/how-to-fix-http-404-on-github-pages) – happyvirus Jun 23 '20 at 11:50

2 Answers2

0

If I click on the link, the page is shown, so I think it's working. 1

0

404 errors indicates missing files from node_modules folder.

Please remove node_modules from .gitignore file.

Commit and push node_modules folder also. Now republish your Github pages

Vijay Atmin
  • 467
  • 2
  • 13