1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <link rel="icon" href="/favicon.ico">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Vite App</title>
- <style>
- .loading-box{
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="loading-box">
- <img src="/img/loading.gif" alt width="400"/>
- </div>
- </div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|