52
.gitignore
vendored
Normal file
52
.gitignore
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
# 編輯器和 IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# 系統檔案
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# 日誌檔
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# 臨時檔案
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.bak
|
||||
|
||||
# 環境變數和機敏資訊
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.key
|
||||
*.pem
|
||||
config.json
|
||||
secrets.json
|
||||
|
||||
# 套件管理
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# 建置輸出
|
||||
dist/
|
||||
build/
|
||||
*.min.js
|
||||
*.min.css
|
||||
|
||||
# 其他
|
||||
*.zip
|
||||
*.rar
|
||||
*.tar.gz
|
||||
.cache/
|
||||
Reference in New Issue
Block a user