index.html 696 B

1234567891011121314151617181920212223242526
  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 src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
  9. <script>
  10. {
  11. if (location.href.includes('debug')) {
  12. var vConsole = new window.VConsole();
  13. }
  14. }
  15. </script>
  16. </head>
  17. <body class="m-0 p-0">
  18. <div id="app" class="h-screen w-screen bg-hex-22252f flex flex-col text-white overflow-y-scroll"></div>
  19. <script src="/config.js"></script>
  20. <script type="module" src="/src/main.ts"></script>
  21. </body>
  22. </html>