Browse Source

Exclude .web dir when running uvicorn (#2986)

Elijah Ahianyo 1 year ago
parent
commit
619c0b0d06
1 changed files with 1 additions and 0 deletions
  1. 1 0
      reflex/utils/exec.py

+ 1 - 0
reflex/utils/exec.py

@@ -190,6 +190,7 @@ def run_backend(
         log_level=loglevel.value,
         reload=True,
         reload_dirs=[config.app_name],
+        reload_excludes=[constants.Dirs.WEB],
     )