diff --git a/.gitignore b/.gitignore index 8dc7b8f..f008aed 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,24 @@ application/logs/* !application/logs/.htaccess /vendor/ +# 1. VS Code 설정 +.vscode/ -git config --global user.name "jjstyle" -git config --global user.email "jjstyle@owra.net" \ No newline at end of file +# 2. 빌드 결과물 및 임시 파일 +/dist +/build +/out +*.log +*.tmp + +# 3. Node.js (가장 흔하게 사용되는 예시 중 하나) +/node_modules + +# 4. 운영체제 파일 +.DS_Store +Thumbs.db + +# 5. 민감 정보 파일 +.env + +.history/ \ No newline at end of file