Files
eSIM-Tools/.netlifyignore
Abner dd77aabd63 docs(deployment): 添加 Netlify 部署配置和优化指南
- 新增 DEPLOYMENT.md 文件,详细说明 Netlify 部署配置和优化策略
- 更新 .netlifyignore 文件,排除非必要文件以提高部署效率
- 修改 netlify.toml 文件,启用资源压缩和缓存控制
- 添加部署分析脚本,生成部署清单和统计信息
- 优化 package.json,增加部署相关命令
2025-08-06 00:41:33 +08:00

87 lines
913 B
Plaintext

# 开发工具和配置文件
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
# 构建工具配置
webpack.config.js
postcss.config.js
.babelrc
.browserslistrc
.eslintrc*
.prettierrc*
.editorconfig
# 开发脚本
scripts/
*.config.js
*.config.json
# 测试文件
tests/
test-*.html
*.test.js
*.spec.js
coverage/
.nyc_output/
# 文档和说明文件
docs/
*.md
!README.md
LICENSE
license
# 环境配置
.env*
env.example
.env.local
.env.development.local
.env.test.local
.env.production.local
# 版本控制
.git/
.gitignore
.gitattributes
# IDE和编辑器
.vscode/
.idea/
*.swp
*.swo
*~
# 操作系统
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# 临时文件
*.tmp
*.temp
*.log
*.cache
# 构建产物(如果不需要)
dist/
build/
out/
# 开发服务器
.python-version
.venv/
venv/
env/
# 其他非必要文件
*.bak
*.backup
*.old