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()
 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():
 if frontend_favicon.exists():
     try:
     try:
         shutil.copyfile(frontend_favicon, STATIC_DIR / "favicon.png")
         shutil.copyfile(frontend_favicon, STATIC_DIR / "favicon.png")
     except Exception as e:
     except Exception as e:
         logging.error(f"An error occurred: {e}")
         logging.error(f"An error occurred: {e}")
-
 else:
 else:
     logging.warning(f"Frontend favicon not found at {frontend_favicon}")
     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
 # CUSTOM_NAME
 ####################################
 ####################################
@@ -495,7 +506,7 @@ if CUSTOM_NAME:
                 if r.status_code == 200:
                 if r.status_code == 200:
                     with open(f"{STATIC_DIR}/splash.png", "wb") as f:
                     with open(f"{STATIC_DIR}/splash.png", "wb") as f:
                         r.raw.decode_content = True
                         r.raw.decode_content = True
-                        shutil.copyfileobj(r.raw, f)                
+                        shutil.copyfileobj(r.raw, f)
 
 
             WEBUI_NAME = data["name"]
             WEBUI_NAME = data["name"]
     except Exception as e:
     except Exception as e: