From 91794949727b04ef722dbfa92b7873bcc7f979c5 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Thu, 6 Jun 2024 23:19:03 +0200 Subject: [PATCH] added mime typing --- app.py | 13 +++++++++++++ zoos/personalities_zoo | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index f7a01078..5246b367 100644 --- a/app.py +++ b/app.py @@ -7,6 +7,7 @@ This file is the entry point to the webui. """ from fastapi import FastAPI from fastapi.staticfiles import StaticFiles +from starlette.responses import FileResponse from fastapi.responses import HTMLResponse from lollms.app import LollmsApplication from lollms.paths import LollmsPaths @@ -222,6 +223,18 @@ if __name__ == "__main__": app.mount("/extensions", StaticFiles(directory=Path(__file__).parent/"web"/"dist", html=True), name="extensions") app.mount("/playground", StaticFiles(directory=Path(__file__).parent/"web"/"dist", html=True), name="playground") app.mount("/settings", StaticFiles(directory=Path(__file__).parent/"web"/"dist", html=True), name="settings") + + # Custom route to serve JavaScript files with the correct MIME type + @app.get("/{path:path}") + async def serve_js(path: str): + if path=="": + return FileResponse(Path(__file__).parent / "web" / "dist" / "index.html", media_type="text/html") + file_path = Path(__file__).parent / "web" / "dist" / path + if file_path.suffix == ".js": + return FileResponse(file_path, media_type="application/javascript") + return FileResponse(file_path) + + app.mount("/", StaticFiles(directory=Path(__file__).parent/"web"/"dist", html=True), name="static") diff --git a/zoos/personalities_zoo b/zoos/personalities_zoo index 654ebcfb..0a10f39f 160000 --- a/zoos/personalities_zoo +++ b/zoos/personalities_zoo @@ -1 +1 @@ -Subproject commit 654ebcfb32819d5418a5622460b602d77daf3eb9 +Subproject commit 0a10f39fe33d6a40e47be79b3634224c75ab2130