0" style="margin-top: 15px" :dataList="info.Heatmap" title="热力图"
+ :key="`heatmap-${info.Uid}`" />
+
+ ">
暂无热力图数据
diff --git a/packages/@core/preferences/src/config.ts b/packages/@core/preferences/src/config.ts
index 17fa151..b35a438 100644
--- a/packages/@core/preferences/src/config.ts
+++ b/packages/@core/preferences/src/config.ts
@@ -50,7 +50,7 @@ const defaultPreferences: Preferences = {
},
logo: {
enable: true,
- source: '../public/favicon.ico',
+ source: 'https://merge-pet-web.oss-cn-heyuan.aliyuncs.com/favicon.ico',
},
navigation: {
accordion: true,
diff --git a/packages/preferences/src/index.ts b/packages/preferences/src/index.ts
index 486fdd4..357729c 100644
--- a/packages/preferences/src/index.ts
+++ b/packages/preferences/src/index.ts
@@ -11,13 +11,16 @@ import type { DeepPartial } from '@vben-core/typings';
function defineOverridesPreferences(preferences: DeepPartial
) {
preferences = {
app: {
- name: '喵喵喵之家',
- defaultAvatar: '../public/favicon.ico', // Adjust the path as necessary
+ name: '喵喵喵之家',
+ defaultAvatar:
+ 'https://merge-pet-web.oss-cn-heyuan.aliyuncs.com/favicon.ico', // Adjust the path as necessary
},
logo: {
- source: import.meta.env.VITE_APP_LOGO || '../public/favicon.ico', // Adjust the path as necessary
+ source:
+ import.meta.env.VITE_APP_LOGO ||
+ 'https://merge-pet-web.oss-cn-heyuan.aliyuncs.com/favicon.ico', // Adjust the path as necessary
},
- }
+ };
return preferences;
}