43 lines
443 B
Plaintext
43 lines
443 B
Plaintext
# Nuxt 개발 디렉토리
|
|
.nuxt
|
|
.output
|
|
|
|
# Node
|
|
node_modules
|
|
.node_modules
|
|
|
|
# 빌드 결과물
|
|
dist
|
|
|
|
# 환경 변수 (민감한 정보 보호)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# 로그
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# 에디터
|
|
.vscode/extensions.json
|
|
.idea
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# TypeScript 생성 파일
|
|
*.tsbuildinfo
|
|
|
|
# 테스트 커버리지
|
|
coverage
|
|
.nyc_output
|