Explorar el Código

Exclude .web dir when running uvicorn (#2986)

Elijah Ahianyo hace 1 año
padre
commit
619c0b0d06
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      reflex/utils/exec.py

+ 1 - 0
reflex/utils/exec.py

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