1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <!DOCTYPE html>
| <html lang="en">
|
| <head>
| <meta charset="UTF-8" />
| <link rel="icon" type="image/svg+xml" href="/relicon.png" />
| <link rel="manifest" href="/desk/manifest.json">
| <meta name="viewport"
| content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no,viewport-fit=cover">
| <meta name="apple-mobile-web-app-capable" content="yes" />
| <meta name="theme-color" content="#131a2e">
| <meta name="apple-mobile-web-app-status-bar-style" content="#131a2e" />
| <link rel="apple-touch-icon" href="./public/img/App.png">
| <title>BZ</title>
| </head>
|
| <body>
| <div id="app"></div>
| <script type="module" src="/src/main.js"></script>
| </body>
|
| </html>
|
|