File size: 196 Bytes
24d1b2a
 
 
 
 
1
2
3
4
5
app.mount("/", StaticFiles(directory="static", html=True), name="static")

@app.get("/")
def index() -> FileResponse:
    return FileResponse(path="/app/static/index.html", media_type="text/html")