diff --git a/server.py b/server.py index 2940b6c..d6a1d59 100644 --- a/server.py +++ b/server.py @@ -69,7 +69,7 @@ class Server: def run(self, SERVER_HOST, SERVER_PORT): app = fastapi.FastAPI() - self.webui(app=app, path="/") + self.webui(app=app, path="") uvicorn.run(app, host=SERVER_HOST, port=int(SERVER_PORT))