allow static files to be symlinks

This commit is contained in:
pythongosssss 2023-05-12 20:58:29 +01:00
parent 8ea165dd1e
commit 8a4ff5e34c
1 changed files with 1 additions and 1 deletions

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):