You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # 忽略所有 .map 文件
- *.map
-
- # 忽略所有 .js 文件(如果你不想提交编译后的 JS 文件)
- *.js
-
- # 忽略所有 .json 文件(如果你不想提交某些 JSON 文件)
- *.json
-
- # 忽略 dist 目录(通常编译后的文件会放在 dist 目录中)
- dist/
-
- # 忽略 node_modules 目录
- node_modules/
-
- # 忽略 HBuilderX 生成的 unpackage 目录
- .DS_Store
|