| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html {
- height: 100%;
- }
- body {
- height: 100%;
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- background-color: #f5f5f5;
- }
- #app {
- width: 100%;
- height: 100%;
- min-height: 100%;
- /* 部分 WebView 需显式占满可视区域 */
- min-height: 100vh;
- min-height: 100dvh;
- min-height: -webkit-fill-available;
- }
- </style>
- </head>
- <body>
- <!-- 若将 npm run build 的 dist 放入 Android assets 以 file:// 打开,请取消下一行注释并配置机器人可访问的后端,例如: http://127.0.0.1:3381/api/v1 或 http://10.0.0.2:3381/api/v1 -->
- <!-- <script>window.__MEDICAL_API_BASE__ = 'http://127.0.0.1:3381/api/v1';</script> -->
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|