1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="shortcut icon" type="image/x-icon" href="/src/assets/images/logo.png">
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title><%- title %></title>
- <script>
- window.process = {
- cwd() { return '' }
- }
-
-
-
- window.addEventListener('beforeunload', (event) => {
-
-
-
- });
- window.addEventListener('unload', function (event) {
-
-
-
-
-
-
-
- });
- </script>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|