Update app.py
Browse files
app.py
CHANGED
@@ -845,6 +845,7 @@ async def generate_zip_file(
|
|
845 |
|
846 |
# --- Static File Serving & Root Redirect ---
|
847 |
app.mount("/uploads", StaticFiles(directory=UPLOAD_DIR), name="uploads")
|
|
|
848 |
|
849 |
@app.get("/", include_in_schema=False)
|
850 |
def root():
|
|
|
845 |
|
846 |
# --- Static File Serving & Root Redirect ---
|
847 |
app.mount("/uploads", StaticFiles(directory=UPLOAD_DIR), name="uploads")
|
848 |
+
app.mount("/login", StaticFiles(directory=STATIC_DIR), name="static")
|
849 |
|
850 |
@app.get("/", include_in_schema=False)
|
851 |
def root():
|