From e0614e1740c0f99d108a8e79315d572e1014f868 Mon Sep 17 00:00:00 2001 From: meowrain Date: Mon, 19 Jan 2026 23:05:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E6=9B=B4=E6=96=B0=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E5=9B=BE=E7=89=87URL=E4=B8=BA=E5=A4=87=E7=94=A8?= =?UTF-8?q?=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将背景图片URL从原链接切换为备用链接,确保背景图片能够正常显示 --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index d09f8f7..a7589a8 100644 --- a/src/config.ts +++ b/src/config.ts @@ -35,8 +35,8 @@ export const siteConfig: SiteConfig = { }, background: { enable: true, // Enable background image - src: "https://riscv-nas.acetaffy.top/random?type=horizontal", - // src: "https://t.alcy.cc/ycy", // Background image URL (supports HTTPS) + // src: "https://riscv-nas.acetaffy.top/random?type=horizontal", + src: "https://t.alcy.cc/ycy", // Background image URL (supports HTTPS) position: "center", // Background position: 'top', 'center', 'bottom' size: "cover", // Background size: 'cover', 'contain', 'auto' repeat: "no-repeat", // Background repeat: 'no-repeat', 'repeat', 'repeat-x', 'repeat-y'