diff --git a/app.py b/app.py index b4b714f..ee85d36 100644 --- a/app.py +++ b/app.py @@ -14,7 +14,6 @@ app = FastAPI() # Mount static files app.mount("/static", StaticFiles(directory="static"), name="static") -app.add_middleware( HTTPSRedirectMiddleware ) app.add_middleware(TrustedHostMiddleware, allowed_hosts=["*"])