Files
schoolNews/schoolNewsWeb/index.html

26 lines
794 B
HTML
Raw Permalink Normal View History

2025-10-08 14:11:54 +08:00
<!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">
2025-12-12 13:37:45 +08:00
<link rel="icon" type="image/x-icon" href="/favicon.ico">
2025-10-08 14:11:54 +08:00
<title>校园新闻管理系统</title>
2025-11-24 11:50:15 +08:00
<!-- 运行时配置文件必须在main.ts之前加载 -->
<script src="/schoolNewsWeb/app-config.js"></script>
2025-11-08 13:42:33 +08:00
<style>
body{
height: 100vh;
}
</style>
2025-10-08 14:11:54 +08:00
</head>
<body>
<noscript>
<strong>We're sorry but 校园新闻管理系统 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>