Browse Source

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

pull/663/head
comfyanonymous 2 years ago
parent
commit
153f7ee152
  1. 2
      server.py

2
server.py

@ -363,7 +363,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):

Loading…
Cancel
Save