From 2d9ecc95c51d4ad82dde9ea90524a2ff4bfed5e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91=E6=A0=91?= Date: Fri, 2 Jan 2026 18:10:28 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0.gitignore=E5=B9=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=AF=BC=E8=88=AA=E6=A0=8F=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在.gitignore中添加.edgeone忽略项 移除导航栏中的"他站"链接,新增"状态"链接 --- .gitignore | 3 +++ src/config.ts | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index dbee63ac4..e34a4e4ae 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,6 @@ yarn.lock # 忽略上游仓库 ori + +# EdgeOne +.edgeone diff --git a/src/config.ts b/src/config.ts index fbbae9eba..ff189c9fd 100644 --- a/src/config.ts +++ b/src/config.ts @@ -76,16 +76,16 @@ export const navBarConfig: NavBarConfig = { url: "/sponsors/", // Internal links should not include the base path, as it is automatically added external: false, // Show an external link icon and will open in a new tab }, - { - name: "他站", - url: "/posts/other-sites/", // Internal links should not include the base path, as it is automatically added - external: false, // Show an external link icon and will open in a new tab - }, { name: "统计", url: "https://umami.acofork.com/share/CdkXbGgZr6ECKOyK", // 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 }, + { + name: "状态", + url: "https://ok.2x.nz", // 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 + }, ], };