1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

allow static files to be symlinks

This commit is contained in:
pythongosssss
2023-05-12 20:58:29 +01:00
parent 8ea165dd1e
commit 8a4ff5e34c

View File

@@ -362,7 +362,7 @@ class PromptServer():
def add_routes(self):
self.app.add_routes(self.routes)
self.app.add_routes([
web.static('/', self.web_root),
web.static('/', self.web_root, follow_symlinks=True),
])
def get_queue_info(self):