chore: add .gitignore for React frontend project
This commit is contained in:
parent
6642d5fa22
commit
77282893f3
49
.gitignore
vendored
49
.gitignore
vendored
@ -1,10 +1,45 @@
|
|||||||
node_modules
|
# Dependencies
|
||||||
|
node_modules/
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
|
||||||
|
# Build outputs
|
||||||
|
/dist
|
||||||
|
/build
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# Environment files (never commit secrets)
|
||||||
.env
|
.env
|
||||||
# Build output
|
.env.local
|
||||||
dist/
|
.env.*.local
|
||||||
|
.env.bak
|
||||||
|
|
||||||
# Lock files - clean install
|
# IDE
|
||||||
package-lock.json
|
.vscode/
|
||||||
*.bak
|
.idea/
|
||||||
*.bak
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
logs/
|
||||||
|
|
||||||
|
# Coverage
|
||||||
|
coverage/
|
||||||
|
.nyc_output/
|
||||||
|
|
||||||
|
# TypeScript
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
docker-compose.override.yml
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
.cache/
|
||||||
|
.tmp/
|
||||||
|
*.tmp
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user