24 lines
735 B
HTML
24 lines
735 B
HTML
<!doctype html>
|
||
<html lang="zh-cmn-Hans">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" href="/favicon.svg" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<script src="/vconsole.min.js"></script>
|
||
<script>
|
||
var vConsole = new VConsole({
|
||
// defaultPlugins: ['SYSTEM', 'CONSOLE', 'NETWORK']
|
||
});
|
||
// 如果需要在页面加载完成后才显示 vConsole,可以监听 DOMContentLoaded 事件
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
vConsole.show();
|
||
});
|
||
</script>
|
||
<title>%VITE_APP_TITLE%</title>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
</body>
|
||
</html>
|