You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fixed the error by changing the .gitignore file to the following, (BEFORE uploading it as a new repository to GitHub):
node_modules/*
.idea/
may I suggest changing the .gitignore file, or to highlight this issue in the ES6-Tutorial instructions, incase someone else wants to upload it to GitHub pages.
edit: If the repository is already uploaded with node_modules you could untrack node_modules with the following git command at the repository folder:
git rm --cached node_modules -r
The text was updated successfully, but these errors were encountered:
an error in node_modules was causing a 404 issue when uploading it to
GitHub pages. So I removed node modules from the repository. (I also
changed the gitignore document to ignore node_modules when uploading
again.) I highlight this issue more from the original repository I
used: ccoenraets/es6-tutorial#20
When I try to upload the project to GitHub Pages, I get a 404 error when loading the index file, followed by an email from GitHub:
I managed to fix this error after reading up on the following links. This is a common problem with Jekyll:
juliangruber/balanced-match#22
EarthlingInteractive/aframe-geo-projection-component@f06ab2e
I fixed the error by changing the .gitignore file to the following, (BEFORE uploading it as a new repository to GitHub):
may I suggest changing the .gitignore file, or to highlight this issue in the ES6-Tutorial instructions, incase someone else wants to upload it to GitHub pages.
edit: If the repository is already uploaded with node_modules you could untrack node_modules with the following git command at the repository folder:
git rm --cached node_modules -r
The text was updated successfully, but these errors were encountered: