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
Asked
Active
Viewed 104 times
1
-
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 Answers
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