index.html 804 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta name="description" content="A Modern Back-end Management System" />
  8. <meta name="keywords" content="Vben Admin Pro Vue3 Vite" />
  9. <meta name="author" content="Vben" />
  10. <meta
  11. name="viewport"
  12. content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
  13. />
  14. <!-- 由 vite 注入 VITE_GLOB_APP_TITLE 变量,在 .env 文件内配置 -->
  15. <title><%= VITE_GLOB_APP_TITLE %></title>
  16. <link rel="icon" href="/favicon.ico" />
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.ts"></script>
  21. </body>
  22. </html>