Commit 153f7ee1 authored by comfyanonymous's avatar comfyanonymous
Browse files

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

parents 44f9f9ba 8a4ff5e3
...@@ -363,7 +363,7 @@ class PromptServer(): ...@@ -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):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment