index.html 559 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>走馬短劇</title>
  8. <style>
  9. #app {
  10. background-color: #11131e;
  11. }
  12. body {
  13. background-color: #11131e;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div id="app"></div>
  19. <script type="module" src="/src/main.js"></script>
  20. </body>
  21. </html>