35 lines
738 B
HTML
35 lines
738 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link href="/vite.svg" rel="icon" type="image/svg+xml"/>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
|
<title></title>
|
|
<link href="/iconfont/iconfont.css" rel="stylesheet" type="text/css">
|
|
<style>
|
|
html {
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
html, body, #app {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="/src/main.ts" type="module"></script>
|
|
<script src="/iconfont/iconfont.js"></script>
|
|
</body>
|
|
</html>
|