index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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 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_APP_TITLE 变量,在 .env 文件内配置 -->
  15. <title><%= VITE_APP_TITLE %></title>
  16. <link rel="icon" href="/favicon.ico" />
  17. <script>
  18. // 生产环境下注入百度统计
  19. if (window._VBEN_ADMIN_PRO_APP_CONF_) {
  20. var _hmt = _hmt || [];
  21. (function () {
  22. var hm = document.createElement('script');
  23. hm.src =
  24. 'https://hm.baidu.com/hm.js?d20a01273820422b6aa2ee41b6c9414d';
  25. var s = document.getElementsByTagName('script')[0];
  26. s.parentNode.insertBefore(hm, s);
  27. })();
  28. }
  29. </script>
  30. </head>
  31. <body>
  32. <div id="app"></div>
  33. <script type="module" src="/src/main.ts"></script>
  34. </body>
  35. </html>