fix: change title

This commit is contained in:
熊潇 2025-06-04 13:34:15 +08:00
parent b42d843099
commit 571eb89df5
2 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Apps</title>
<title>杭州余杭逸文设计工作室</title>
<link rel="stylesheet" href="./src/assets/index.css">
<style>
html,

View File

@ -50,3 +50,9 @@ const url = new URL(window.location.href);
const isKevisual = url.hostname === 'kevisual.cn';
const isKevisualXiongxiao = url.hostname === 'kevisual.xiongxiao.me';
export const config = isKevisual ? kevisualConfig : isKevisualXiongxiao ? kevisualXiongxiaoConfig : silkyConfig;
if (isKevisual || isKevisualXiongxiao) {
// document.title = '杭州余杭逸文设计工作室';
} else {
document.title = 'SilkyAI';
}