36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!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" />
|
|
<title><%=VITE_APP_NAME %></title>
|
|
<meta name="description" content="结伴客后台管理系统 - 专业的旅行结伴与动物认领平台管理后台" />
|
|
<meta name="keywords" content="结伴客,后台管理,旅行,动物认领,商家管理" />
|
|
|
|
<!-- 预加载关键资源 -->
|
|
<link rel="preconnect" href="<%= VITE_API_BASE_URL %>" crossorigin>
|
|
|
|
<!-- 主题颜色 -->
|
|
<meta name="theme-color" content="#1890ff">
|
|
|
|
<!-- 移动端优化 -->
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="apple-mobile-web-app-title" content="<%= VITE_APP_NAME %>">
|
|
|
|
<!-- 避免被搜索引擎索引 -->
|
|
<meta name="robots" content="noindex, nofollow">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
<!-- 环境变量提示 -->
|
|
<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);
|
|
</script>
|
|
</body>
|
|
</html> |