index.html 669 B

1234567891011121314151617181920212223242526272829
  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>Vite App</title>
  8. <style>
  9. .loading-box{
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. position: fixed;
  14. top: 0;
  15. right: 0;
  16. bottom: 0;
  17. left: 0;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="app">
  23. <div class="loading-box">
  24. <img src="/img/loading.gif" alt width="400"/>
  25. </div>
  26. </div>
  27. <script type="module" src="/src/main.js"></script>
  28. </body>
  29. </html>