Update main.py
Browse files
main.py
CHANGED
@@ -39,4 +39,4 @@ app.mount("/", StaticFiles(directory="static", html=True), name="static")
|
|
39 |
|
40 |
@app.get("/")
|
41 |
def index() -> FileResponse:
|
42 |
-
return FileResponse(path="
|
|
|
39 |
|
40 |
@app.get("/")
|
41 |
def index() -> FileResponse:
|
42 |
+
return FileResponse(path="static/index.html", media_type="text/html")
|