aps-agent/apps/web/index.html

21 lines
730 B
HTML
Raw Permalink Normal View History

2026-07-21 11:05:57 +08:00
<!DOCTYPE html>
<!-- ============================================================
APS 智能排产工作台 · Web 端入口(moduleId: web-index, 可重生 ✅)
============================================================ -->
<html lang="zh-CN">
<head>
<!-- UTF-8 编码:保证中文正常显示 -->
<meta charset="UTF-8" />
<!-- 桌面优先的标准视口 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 页面标题 -->
<title>APS 智能排产工作台</title>
</head>
<body>
<!-- React 挂载点 -->
<div id="root"></div>
<!-- 应用入口(Vite 处理 TS/JSX) -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>