Skip to content

Commit 91f287d

Browse files
committed
Add gitignore
gitignore should ignore large and sensitive files such as node_modules, build files, env and other temporary or swap files.
1 parent 067394d commit 91f287d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

frontend/.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Frontend specific ignores
2+
# dependencies
3+
/node_modules
4+
5+
# build output
6+
/build
7+
/dist
8+
9+
# dotenv files
10+
.env
11+
.env.local
12+
13+
# logs
14+
npm-debug.log*
15+
yarn-error.log*
16+
17+
# Mac
18+
.DS_Store
19+
20+
# editor and IDE files
21+
.vscode/
22+
*.swp

0 commit comments

Comments
 (0)