Skip to content

Commit

Permalink
Add Node.js-related entries to .gitignore
Browse files Browse the repository at this point in the history
Included `node_modules/` and `package-lock.json` to `.gitignore` to prevent unnecessary Node.js files from being tracked. This keeps the repository clean and avoids committing generated or dependency-related files.
  • Loading branch information
bbalganjjm committed Dec 20, 2024
1 parent 83bc7c9 commit 1905448
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ local.properties

localhost*/

src/main/resources/static/localhost:8080/
src/main/resources/static/localhost:8080/

# node
node_modules/
package-lock.json

0 comments on commit 1905448

Please sign in to comment.