.dockerignore 401 B

12345678910111213141516171819202122232425262728
  1. # 依赖库:不要打包本地的 node_modules,由 Docker 重新安装
  2. node_modules
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # 构建输出:排除本地生成的构建文件
  7. dist/
  8. # WebStorm / JetBrains IDE 相关文件
  9. .idea/
  10. *.iws
  11. *.iml
  12. # Git 相关
  13. .git
  14. .gitignore
  15. # 环境变量与配置
  16. .env.local
  17. .env.*.local
  18. .DS_Store
  19. # 文档与杂项
  20. README.md
  21. LICENSE
  22. .editorconfig
  23. .vscode/