Files
jiebanke/admin-system/index.html

36 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2025-08-30 14:33:49 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2025-08-31 21:06:52 +08:00
<title><%=VITE_APP_NAME %></title>
2025-08-30 14:33:49 +08:00
<meta name="description" content="结伴客后台管理系统 - 专业的旅行结伴与动物认领平台管理后台" />
<meta name="keywords" content="结伴客,后台管理,旅行,动物认领,商家管理" />
<!-- 预加载关键资源 -->
2025-08-31 21:06:52 +08:00
<link rel="preconnect" href="<%= VITE_API_BASE_URL %>" crossorigin>
2025-08-30 14:33:49 +08:00
<!-- 主题颜色 -->
<meta name="theme-color" content="#1890ff">
<!-- 移动端优化 -->
<meta name="mobile-web-app-capable" content="yes">
2025-08-30 14:33:49 +08:00
<meta name="apple-mobile-web-app-status-bar-style" content="default">
2025-08-31 21:06:52 +08:00
<meta name="apple-mobile-web-app-title" content="<%= VITE_APP_NAME %>">
2025-08-30 14:33:49 +08:00
<!-- 避免被搜索引擎索引 -->
<meta name="robots" content="noindex, nofollow">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<!-- 环境变量提示 -->
2025-08-31 21:06:52 +08:00
<script type="module">
console.log('环境:', import.meta.env.MODE);
console.log('版本:', import.meta.env.VITE_APP_VERSION);
console.log('API地址:', import.meta.env.VITE_API_BASE_URL);
2025-08-30 14:33:49 +08:00
</script>
</body>
</html>