42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="icon" type="image/svg+xml" href="/screen.svg"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>应急就医服务中心</title>
|
|
<!-- 全局配置 -->
|
|
<script>
|
|
// // 默认值(可选)
|
|
// window.__APP_ENV__ = {
|
|
// VITE_GLOB_API_URL: '__VITE_GLOB_API_URL__', // 占位符,Docker 替换
|
|
// };
|
|
window._AMapSecurityConfig = {
|
|
securityJsCode: "1b3b86585c863d22db1e7f7636a9e495",
|
|
}
|
|
</script>
|
|
<!-- __APP_ENV__ 由 Vite 在构建时注入 -->
|
|
<!-- 开发环境:不注入或注入空值 -->
|
|
<!-- 生产环境:注入真实值(或占位符供 Docker 替换) -->
|
|
<!-- __INJECT_APP_ENV__ -->
|
|
</head>
|
|
<style>
|
|
html, body, #app {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|