33 lines
347 B
Plaintext
33 lines
347 B
Plaintext
# 忽略不需要的文件和目录
|
|
node_modules
|
|
npm-debug.log
|
|
.git
|
|
.gitignore
|
|
README.md
|
|
.env
|
|
.nyc_output
|
|
coverage
|
|
.cache
|
|
.vscode
|
|
.idea
|
|
|
|
# 只保留dist目录和配置文件
|
|
!dist/
|
|
!nginx.conf
|
|
!Dockerfile
|
|
!docker-compose.yml
|
|
|
|
# 忽略开发相关文件
|
|
src/
|
|
public/
|
|
*.md
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 忽略构建缓存
|
|
.next
|
|
.nuxt
|
|
.output
|
|
.vercel
|