mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-12 16:05:12 +08:00
- 添加 docs 目录到 .gitignore 忽略列表 - 修复统计脚本 URL 协议为 HTTPS - 更新构建时间戳并新增 Windows 可执行文件构建脚本 - 重构服务端静态资源处理逻辑,支持 Bun 自动嵌入 - 改进 SPA 路由 fallback 机制 - 优化局域网 IP 获取函数变量声明 - 完善 Content-Type 响应头设置 - 移除冗余代码注释,提升可读性
20 lines
733 B
HTML
20 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-cmn-Hans">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<title>OGame-Vue-Ts</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<!-- 统计勿删 -->
|
|
<script charset="UTF-8" id="LA_COLLECT" src="https://sdk.51.la/js-sdk-pro.min.js"></script>
|
|
<script>LA.init({ id: "L298GYqn6JhAO0VU", ck: "L298GYqn6JhAO0VU", autoTrack: true, hashMode: true })</script>
|
|
</body>
|
|
|
|
</html> |