/ .gitignore
.gitignore
1 # Development and Build Files 2 node_modules/ 3 npm-debug.log* 4 yarn-debug.log* 5 yarn-error.log* 6 package-lock.json 7 yarn.lock 8 9 # Build Output 10 dist/ 11 build/ 12 out/ 13 .next/ 14 .nuxt/ 15 16 # Environment Variables 17 .env 18 .env.local 19 .env.development.local 20 .env.test.local 21 .env.production.local 22 23 # IDE and Editor Files 24 .vscode/ 25 .idea/ 26 *.swp 27 *.swo 28 *~ 29 .DS_Store 30 Thumbs.db 31 32 # OS Generated Files 33 .DS_Store 34 .DS_Store? 35 ._* 36 .Spotlight-V100 37 .Trashes 38 ehthumbs.db 39 Thumbs.db 40 41 # Logs 42 *.log 43 logs/ 44 *.log.* 45 46 # Temporary Files 47 *.tmp 48 *.temp 49 *.cache 50 .cache/ 51 52 # Backup Files 53 *.bak 54 *.backup 55 *.old 56 57 # Testing 58 coverage/ 59 .nyc_output/ 60 .jest/ 61 62 # Dependencies (if using package managers) 63 node_modules/ 64 vendor/ 65 66 # Compiled Files (if using build tools) 67 *.min.js 68 *.min.css 69 *.compiled.* 70 71 # Database Files 72 *.db 73 *.sqlite 74 *.sqlite3 75 76 # Local Configuration 77 config.local.js 78 settings.local.json 79 80 # Archive Files 81 *.zip 82 *.tar.gz 83 *.rar 84 85 # Font Source Files (keep compiled fonts) 86 *.otf 87 *.ttf 88 *.woff 89 *.woff2 90 91 # Image Source Files (keep optimized images) 92 *.psd 93 *.ai 94 *.sketch 95 *.fig 96 97 # Video Source Files (keep optimized videos) 98 *.mov 99 *.avi 100 *.mp4 101 *.mkv 102 *.wmv 103 *.flv 104 105 # Audio Source Files (keep optimized audio) 106 *.wav 107 *.aiff 108 *.mp3 109 *.ogg 110 *.wma 111 112 # Document Source Files (keep compiled docs) 113 *.md 114 *.txt 115 *.pdf 116 *.doc 117 *.docx 118 119 # Keep all website content files 120 !*.html 121 !*.css 122 !*.js 123 !*.json 124 !*.xml 125 !*.txt 126 !*.ico 127 !*.png 128 !*.jpg 129 !*.jpeg 130 !*.gif 131 !*.svg 132 !*.webp 133 !*.woff 134 !*.woff2 135 !*.ttf 136 !*.otf 137 !*.mp4 138 !*.webm 139 !*.ogg 140 !*.mp3 141 !*.wav