From 295472fca1b3c79a209f7125997d281fbea4bde5 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Wed, 10 Apr 2024 01:27:19 -0700 Subject: [PATCH] chore: formatting --- backend/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/main.py b/backend/main.py index c8202f017..d63847bc0 100644 --- a/backend/main.py +++ b/backend/main.py @@ -288,6 +288,7 @@ async def get_app_latest_release_version(): detail=ERROR_MESSAGES.RATE_LIMIT_EXCEEDED, ) + @app.get("/manifest.json") async def get_manifest_json(): return { @@ -301,6 +302,7 @@ async def get_manifest_json(): "icons": [{"src": "/favicon.png", "type": "image/png", "sizes": "844x884"}], } + app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static") app.mount("/cache", StaticFiles(directory=CACHE_DIR), name="cache")