72 lines
686 B
Plaintext
72 lines
686 B
Plaintext
# 依赖目录
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# 构建输出
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
|
|
# 环境变量文件
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE文件
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 操作系统文件
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git文件
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker文件
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# 文档文件
|
|
README.md
|
|
*.md
|
|
|
|
# 测试文件
|
|
test
|
|
tests
|
|
__tests__
|
|
*.test.js
|
|
*.spec.js
|
|
cypress
|
|
e2e
|
|
|
|
# 临时文件
|
|
tmp
|
|
temp
|
|
|
|
# Vite缓存
|
|
.vite
|
|
|
|
# 备份文件
|
|
*.bak
|
|
*.backup
|
|
|
|
# 编辑器配置
|
|
.editorconfig
|
|
.eslintrc*
|
|
.prettierrc* |