From 758303b5a80e3f69b1a4b8a6a2daa28d6f96d50d Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Mon, 12 Jul 2021 00:58:46 -0500 Subject: [PATCH] ignore node_modules folder during active development (#4054) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index bd9d69597..3cf04d797 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,6 @@ refine-dev.ini # STS (Spring Tool Suite) .springBeans + +# Ignore Node modules that might inadvertently install at current path instead of user or configured env var NODE_PATH +node_modules/