45 lines
569 B
Plaintext
45 lines
569 B
Plaintext
# 依赖和构建产物
|
||
node_modules
|
||
.next
|
||
.pnpm-store
|
||
npm-debug.log*
|
||
yarn-debug.log*
|
||
yarn-error.log*
|
||
pnpm-debug.log*
|
||
|
||
# 版本控制
|
||
.git
|
||
.gitignore
|
||
|
||
# CI/CD(新的部署方式不需要这些)
|
||
.github
|
||
|
||
# 开发工具
|
||
.vscode
|
||
.cursor
|
||
.idea
|
||
*.swp
|
||
*.swo
|
||
|
||
# 环境变量文件
|
||
.env
|
||
.env.*
|
||
!.env.example
|
||
|
||
# 测试和覆盖率
|
||
coverage
|
||
.nyc_output
|
||
test-results
|
||
|
||
# 临时文件和系统文件
|
||
.DS_Store
|
||
*.tmp
|
||
*.temp
|
||
Thumbs.db
|
||
|
||
# 文档(保留README.md,可能包含重要信息)
|
||
LICENSE
|
||
|
||
# Docker 相关文件(避免递归复制)
|
||
Dockerfile*
|
||
docker-compose*.yml |