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
|
||||
# Build output
|
||||
dist/
|
||||
.env.local
|
||||
.env.*.local
|
||||
.env.bak
|
||||
|
||||
# Lock files - clean install
|
||||
package-lock.json
|
||||
*.bak
|
||||
*.bak
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.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