Timothy J. Baek 9 ヶ月 前
コミット
78a5748727
1 ファイル変更14 行追加3 行削除
  1. 14 3
      backend/config.py

+ 14 - 3
backend/config.py

@@ -450,16 +450,27 @@ load_oauth_providers()
 
 STATIC_DIR = Path(os.getenv("STATIC_DIR", BACKEND_DIR / "static")).resolve()
 
-frontend_favicon = FRONTEND_BUILD_DIR / "favicon.png"
+frontend_favicon = FRONTEND_BUILD_DIR / "static" / "favicon.png"
+
 if frontend_favicon.exists():
     try:
         shutil.copyfile(frontend_favicon, STATIC_DIR / "favicon.png")
     except Exception as e:
         logging.error(f"An error occurred: {e}")
-
 else:
     logging.warning(f"Frontend favicon not found at {frontend_favicon}")
 
+frontend_splash = FRONTEND_BUILD_DIR / "static" / "splash.png"
+
+if frontend_splash.exists():
+    try:
+        shutil.copyfile(frontend_splash, STATIC_DIR / "splash.png")
+    except Exception as e:
+        logging.error(f"An error occurred: {e}")
+else:
+    logging.warning(f"Frontend splash not found at {frontend_splash}")
+
+
 ####################################
 # CUSTOM_NAME
 ####################################
@@ -495,7 +506,7 @@ if CUSTOM_NAME:
                 if r.status_code == 200:
                     with open(f"{STATIC_DIR}/splash.png", "wb") as f:
                         r.raw.decode_content = True
-                        shutil.copyfileobj(r.raw, f)                
+                        shutil.copyfileobj(r.raw, f)
 
             WEBUI_NAME = data["name"]
     except Exception as e: