Compare commits

..

2 Commits

Author SHA1 Message Date
Sunwuyuan
0432bf0df0
fix: 更新应用信息 API 地址,修正为新的服务域名 2026-01-11 15:38:00 +08:00
Sunwuyuan
165e7560e0
fix: 更新 API 基础 URL,修正为正确的服务地址 2025-12-27 16:33:41 +08:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
VITE_ASSETS_URL=https://zerocat-bitiful.houlangs.com
VITE_API_BASE_URL=https://kv.wuyuan.dev
VITE_API_BASE_URL=https://kv-service.houlang.cloud

View File

@ -55,7 +55,7 @@ const renderedReadme = computed(() => {
//
const fetchApp = async () => {
try {
const response = await fetch(`https://zerocat-api.houlangs.com/oauth/applications/${props.appId}`);
const response = await fetch(`https://zerocat-api.houlang.cloud/oauth/applications/${props.appId}`);
if (!response.ok) {
throw new Error(`Failed to fetch app info: ${response.status}`);

View File

@ -123,7 +123,7 @@ const loadTokens = async () => {
for (const token of tokens.value) {
if (!appInfoCache.value[token.appId]) {
try {
const appResponse = await fetch(`https://zerocat-api.houlangs.com/oauth/applications/${token.appId}`)
const appResponse = await fetch(`https://zerocat-api.houlang.cloud/oauth/applications/${token.appId}`)
if (appResponse.ok) {
appInfoCache.value[token.appId] = await appResponse.json()
}