-
-

-
+
+
![]()
+
- {{ t('home.welcome') }}
+ {{ titleText }}
-
+
diff --git a/src/pc/app.ts b/src/pc/app.ts
index 8208eba..9971ba8 100644
--- a/src/pc/app.ts
+++ b/src/pc/app.ts
@@ -29,6 +29,9 @@ export async function createPCApp() {
setupPCStore(app)
// 挂载国际化(PC 端独立实例,与移动端共用同一 i18n 模块)
setupI18n(app)
+ // 站点配置: 缓存先 apply 防闪, 再远程 hash 比对
+ const { initWebsiteConfig } = await import('@/shared/logics/init-website-config')
+ await initWebsiteConfig()
setupPCRouter(app)
await pcRouter.isReady()
return app
diff --git a/src/pc/views/Home.vue b/src/pc/views/Home.vue
index 9673c31..949d40a 100644
--- a/src/pc/views/Home.vue
+++ b/src/pc/views/Home.vue
@@ -1,5 +1,12 @@