Remove node_modules from git
Add to .gitignore file node_modules Then call: git rm -r --cached node_modules git commit -m "Remove node_modules now that they're ignored!" git push origin master