Commit b9308407 authored by comfyanonymous's avatar comfyanonymous
Browse files

Make webui return correct mimetypes for css and js files.

parent 463d0d08
......@@ -294,7 +294,12 @@ class PromptServer(BaseHTTPRequestHandler):
out[x] = info
self.wfile.write(json.dumps(out).encode('utf-8'))
elif self.path[1:] in os.listdir(self.server.server_dir):
self._set_headers()
if self.path[1:].endswith('.css'):
self._set_headers(ct='text/css')
elif self.path[1:].endswith('.js'):
self._set_headers(ct='text/javascript')
else:
self._set_headers()
with open(os.path.join(self.server.server_dir, self.path[1:]), "rb") as f:
self.wfile.write(f.read())
else:
......
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