mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
refactor: 重构代码结构和优化配置 docs: 更新文档和注释内容 build: 更新构建配置和依赖项 ci: 更新CI配置和工作流 chore: 更新杂项配置和脚本 fix: 修复已知问题和错误 style: 优化代码格式和样式 perf: 优化性能和提升执行效率 test: 更新测试用例和配置
26 lines
809 B
HTML
26 lines
809 B
HTML
<!doctype html>
|
|
<html build-time="%BUILD_TIME%">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon" />
|
|
<script>
|
|
var coverSupport =
|
|
"CSS" in window &&
|
|
typeof CSS.supports === "function" &&
|
|
(CSS.supports("top: env(a)") || CSS.supports("top: constant(a)"));
|
|
document.write(
|
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
|
(coverSupport ? ", viewport-fit=cover" : "") +
|
|
'" />'
|
|
);
|
|
</script>
|
|
<title>FastApp</title>
|
|
<!--preload-links-->
|
|
<!--app-context-->
|
|
</head>
|
|
<body>
|
|
<div id="app"><!--app-html--></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|