Files
2025-10-29 21:32:25 +08:00

35 lines
435 B
Plaintext

# 排除源代码和开发文件
src/
node_modules/
package*.json
webpack.config.js
vite.config.js
tsconfig.json
.eslintrc.js
.prettierrc
# 排除 IDE 文件
.idea/
.vscode/
*.iml
# 排除版本控制文件
.git/
.gitignore
# 排除构建产物 (只保留 dist 目录)
!dist/
# 排除日志文件
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# 排除环境文件
.env
.env.local
.env.development
.env.test
.env.production