Merge branch 'serve-static-symlinks' of https://github.com/pythongosssss/ComfyUI

This commit is contained in:
comfyanonymous 2023-05-13 11:33:56 -04:00
commit 153f7ee152
1 changed files with 1 additions and 1 deletions

View File

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