diff --git a/backend/open_webui/conda b/backend/open_webui/conda new file mode 100644 index 000000000..4791f2c70 --- /dev/null +++ b/backend/open_webui/conda @@ -0,0 +1,2 @@ + +L:\CeylonAlly\open-webui\backend\open_webui>conda.bat activate open-webui diff --git a/backend/open_webui/main.py b/backend/open_webui/main.py index 416460837..f87ccce37 100644 --- a/backend/open_webui/main.py +++ b/backend/open_webui/main.py @@ -1370,8 +1370,19 @@ async def healthcheck_with_db(): return {"status": True} -app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static") -app.mount("/cache", StaticFiles(directory=CACHE_DIR), name="cache") +class CORSStaticFiles(StaticFiles): + async def get_response(self, path: str, scope): + response = await super().get_response(path, scope) + if isinstance(response, FileResponse): + origin = scope.get('headers', {}).get((b'origin', None)) + if origin: + response.headers["Access-Control-Allow-Origin"] = origin.decode() + response.headers["Access-Control-Allow-Methods"] = "GET, HEAD, OPTIONS" + response.headers["Access-Control-Allow-Headers"] = "*" + return response + +app.mount("/static", CORSStaticFiles(directory=STATIC_DIR), name="static") +app.mount("/cache", CORSStaticFiles(directory=CACHE_DIR), name="cache") def swagger_ui_html(*args, **kwargs): diff --git a/backend/open_webui/static/apple-touch-icon.png b/backend/open_webui/static/apple-touch-icon.png index ece4b85db..3b119a33a 100644 Binary files a/backend/open_webui/static/apple-touch-icon.png and b/backend/open_webui/static/apple-touch-icon.png differ diff --git a/backend/open_webui/static/favicon-96x96.png b/backend/open_webui/static/favicon-96x96.png index 2ebdffebe..158dd2ae2 100644 Binary files a/backend/open_webui/static/favicon-96x96.png and b/backend/open_webui/static/favicon-96x96.png differ diff --git a/backend/open_webui/static/favicon-dark.png b/backend/open_webui/static/favicon-dark.png deleted file mode 100644 index 08627a23f..000000000 Binary files a/backend/open_webui/static/favicon-dark.png and /dev/null differ diff --git a/backend/open_webui/static/favicon.ico b/backend/open_webui/static/favicon.ico index 14c5f9c6d..edb9afe68 100644 Binary files a/backend/open_webui/static/favicon.ico and b/backend/open_webui/static/favicon.ico differ diff --git a/backend/open_webui/static/favicon.png b/backend/open_webui/static/favicon.png index 63735ad46..158dd2ae2 100644 Binary files a/backend/open_webui/static/favicon.png and b/backend/open_webui/static/favicon.png differ diff --git a/backend/open_webui/static/favicon.svg b/backend/open_webui/static/favicon.svg index 0aa909745..63f725e4a 100644 --- a/backend/open_webui/static/favicon.svg +++ b/backend/open_webui/static/favicon.svg @@ -1,3 +1,3 @@ -