davidroyer
6/12/2018 - 8:48 PM

Remove node_modules from git

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