Answers for "add all node_modules to gitignore"

2

gitignore all node_modules

//Put this in your .gitignore file
//Ignore all Node Module Folders Recursively
**node_modules
Posted by: Guest on January-26-2022
0

how to add node modules to gitignore

create a .gitignore file grobally
On that file add the line "node_modules"
Posted by: Guest on January-16-2022

Code answers related to "add all node_modules to gitignore"

Browse Popular Code Answers by Language