Moved frontend/index.html to frontend/html/index.html

Closing #2; Closing #1
This commit is contained in:
Kosh 2023-10-18 12:36:58 +05:30
parent 7e3e9da659
commit 8c90c551e3
2 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def handle_first_launched():
@app.get("/")
@app.get("/<path:url_path>")
def handle_get(url_path: str = "index.html") -> Response:
def handle_get(url_path: str = "html/index.html") -> Response:
"""
Handle all get requests that are made.
"""