后台登录已经成功
This commit is contained in:
@@ -4,12 +4,12 @@
|
||||
<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>
|
||||
<title><%=VITE_APP_NAME %></title>
|
||||
<meta name="description" content="结伴客后台管理系统 - 专业的旅行结伴与动物认领平台管理后台" />
|
||||
<meta name="keywords" content="结伴客,后台管理,旅行,动物认领,商家管理" />
|
||||
|
||||
<!-- 预加载关键资源 -->
|
||||
<link rel="preconnect" href="<%- VITE_API_BASE_URL %>" crossorigin>
|
||||
<link rel="preconnect" href="<%= VITE_API_BASE_URL %>" crossorigin>
|
||||
|
||||
<!-- 主题颜色 -->
|
||||
<meta name="theme-color" content="#1890ff">
|
||||
@@ -17,7 +17,7 @@
|
||||
<!-- 移动端优化 -->
|
||||
<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="apple-mobile-web-app-title" content="<%= VITE_APP_NAME %>">
|
||||
|
||||
<!-- 避免被搜索引擎索引 -->
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
@@ -27,10 +27,10 @@
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
|
||||
<!-- 环境变量提示 -->
|
||||
<script>
|
||||
console.log('环境:', '<%- NODE_ENV %>');
|
||||
console.log('版本:', '<%- VITE_APP_VERSION %>');
|
||||
console.log('API地址:', '<%- VITE_API_BASE_URL %>');
|
||||
<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>
|
||||
Reference in New Issue
Block a user