55 lines
518 B
Plaintext
55 lines
518 B
Plaintext
# 依赖目录
|
|
node_modules
|
|
.pnpm-store
|
|
|
|
# 构建输出
|
|
.next
|
|
dist
|
|
build
|
|
out
|
|
|
|
# 日志文件
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 环境变量文件
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# 编辑器和 IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 操作系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# 测试覆盖率
|
|
coverage
|
|
|
|
# 临时文件
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
|
|
# Docker 相关
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# 其他
|
|
.cache
|
|
.turbo |