index.html 615 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>数字教师</title>
  8. <script>
  9. {
  10. if (location.href.includes('debug')) {
  11. var vConsole = new window.VConsole();
  12. }
  13. }
  14. </script>
  15. </head>
  16. <body class="m-0 p-0">
  17. <div id="app" class="h-screen w-screen bg-hex-22252f flex flex-col text-white overflow-y-scroll"></div>
  18. <script src="/config.js"></script>
  19. <script type="module" src="/src/main.ts"></script>
  20. </body>
  21. </html>