浏览代码

gitignore external assets by default (#3621)

benedikt-bartscher 10 月之前
父节点
当前提交
f71400896b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      reflex/constants/config.py

+ 1 - 1
reflex/constants/config.py

@@ -39,7 +39,7 @@ class GitIgnore(SimpleNamespace):
     # The gitignore file.
     FILE = ".gitignore"
     # Files to gitignore.
-    DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]"}
+    DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]", "assets/external/"}
 
 
 class RequirementsTxt(SimpleNamespace):