From b085541a5c6e51f7b8910a4269cc6c2b26be9187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91=E6=A0=91?= Date: Sat, 11 Oct 2025 18:52:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0Umami=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=9C=8D=E5=8A=A1=E7=9A=84URL=E5=92=8C=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将Umami统计服务的URL从'us.umami.is'更新为'cloud.umami.is',保持配置一致性 --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index 79a643201..01f389be0 100644 --- a/src/config.ts +++ b/src/config.ts @@ -75,7 +75,7 @@ export const navBarConfig: NavBarConfig = { }, { name: "统计", - url: "https://us.umami.is/share/hN3l7PGcxsUCBHfU", // Internal links should not include the base path, as it is automatically added + url: "https://cloud.umami.is/share/hN3l7PGcxsUCBHfU", // Internal links should not include the base path, as it is automatically added external: true, // Show an external link icon and will open in a new tab }, { @@ -118,7 +118,7 @@ export const imageFallbackConfig: ImageFallbackConfig = { export const umamiConfig: UmamiConfig = { enable: true, - baseUrl: "https://us.umami.is", + baseUrl: "https://cloud.umami.is", shareId: "hN3l7PGcxsUCBHfU", timezone: "Asia/Shanghai", };