- 移除 env.d.ts 和 vite.config.ts 中多余的空行 - 修复 package.json 和 tsconfig.json 的换行符问题 - 标准化对象字面量和函数参数中的尾部逗号 - 将登录图标样式从 max-width 改为明确的 width 和 height - 压缩 index.html 中 favicon 链接的格式 - 简化 admin.ts 中函数参数的类型声明格式
16 lines
366 B
HTML
16 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="https://cwd.js.org/icon.png" type="image/x-icon">
|
|
<title>CWD 评论系统</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
|
|
</html> |