20 lines
603 B
HTML
20 lines
603 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<meta name="keywords" content="%VITE_GLOBAL_TITLE%" />
|
||
|
|
<meta name="description" content="%VITE_GLOBAL_TITLE%" />
|
||
|
|
<!--避免微信管理防盗链机制-->
|
||
|
|
<meta name="referrer" content="no-referrer" />
|
||
|
|
<link rel="icon" href="/favicon.ico" />
|
||
|
|
<title>%VITE_GLOBAL_TITLE%</title>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|