chore: 更新.gitignore并调整导航栏配置

在.gitignore中添加.edgeone忽略项
移除导航栏中的"他站"链接,新增"状态"链接
This commit is contained in:
二叉树树
2026-01-02 18:10:28 +08:00
parent 27f77a1789
commit 2d9ecc95c5
2 changed files with 8 additions and 5 deletions

3
.gitignore vendored
View File

@@ -30,3 +30,6 @@ yarn.lock
# 忽略上游仓库 # 忽略上游仓库
ori ori
# EdgeOne
.edgeone

View File

@@ -76,16 +76,16 @@ export const navBarConfig: NavBarConfig = {
url: "/sponsors/", // Internal links should not include the base path, as it is automatically added 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 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: "统计", name: "统计",
url: "https://umami.acofork.com/share/CdkXbGgZr6ECKOyK", // Internal links should not include the base path, as it is automatically added 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 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
},
], ],
}; };