From b11ff247809b8e430b084cdccf7e74d017c5aaed Mon Sep 17 00:00:00 2001 From: AdingApkgg Date: Sun, 22 Feb 2026 08:10:59 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E6=9B=B4=E6=96=B0=20Artalk=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=B8=AD=E7=9A=84=E7=AB=99=E7=82=B9=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E4=B8=BA=E2=80=9C=E6=97=AE=E6=97=AF=E8=81=9A=E6=90=9C?= =?UTF-8?q?=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CommentsModal.vue | 5 ++--- src/config/env.ts | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/CommentsModal.vue b/src/components/CommentsModal.vue index 28ebe40..221b832 100644 --- a/src/components/CommentsModal.vue +++ b/src/components/CommentsModal.vue @@ -146,10 +146,9 @@ function initArtalk() { try { artalkInstance = Artalk.init({ el: '#Comments', - pageKey: 'https://www.searchgal.top', - pageTitle: 'Galgame 聚合搜索', + pageKey: 'https://www.searchgal.top/', server: 'https://artalk.saop.cc', - site: 'Galgame 聚合搜索', + site: '旮旯聚搜', darkMode: 'auto', }) diff --git a/src/config/env.ts b/src/config/env.ts index c728bc3..727f6c1 100644 --- a/src/config/env.ts +++ b/src/config/env.ts @@ -62,7 +62,7 @@ export const UI_CONFIG = { // 第三方服务配置 export const THIRD_PARTY_CONFIG = { artalkServer: import.meta.env.VITE_ARTALK_SERVER || 'https://artalk.saop.cc', - artalkSite: import.meta.env.VITE_ARTALK_SITE || 'Galgame 聚合搜索', + artalkSite: import.meta.env.VITE_ARTALK_SITE || '旮旯聚搜', busuanziEnabled: import.meta.env.VITE_BUSUANZI_ENABLED === 'true', } as const