前端构建错误修复

This commit is contained in:
2026-01-30 15:56:22 +08:00
parent 2660970320
commit 852a72c597
2 changed files with 2 additions and 2 deletions

View File

@@ -482,7 +482,7 @@ const allRegions = ref<any[]>([])
const config = ref<Config>({
Admin: { PasswordBcrypt: '' },
API: { Mode: 'local', EnableMktFallback: true },
API: { Mode: 'local', EnableMktFallback: true, EnableOnDemandFetch: false },
Cron: { Enabled: true, DailySpec: '0 9 * * *' },
DB: { Type: 'sqlite', DSN: '' },
Feature: { WriteDailyFiles: true },

View File

@@ -360,7 +360,7 @@ const latestImage = ref<any>(null)
const todayLoading = ref(false)
// 全球今日图片
const { images: globalImages, loading: globalLoading } = useGlobalTodayImages()
const { images: globalImages } = useGlobalTodayImages()
// 滚动功能实现
const globalScrollContainer = ref<HTMLElement | null>(null)