36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
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="icon" href="/favicon.ico">
|
||
|
|
<title>案例管理系统</title>
|
||
|
|
|
||
|
|
<!-- 加载运行时配置(必须在其他脚本之前加载) -->
|
||
|
|
<script src="/app-config.js"></script>
|
||
|
|
|
||
|
|
<!-- Import Maps 配置 - 引用共享模块 -->
|
||
|
|
<script type="importmap">
|
||
|
|
{
|
||
|
|
"imports": {
|
||
|
|
"@shared/components": "http://localhost:5000/shared/components.js",
|
||
|
|
"@shared/utils": "http://localhost:5000/shared/utils.js",
|
||
|
|
"@shared/api": "http://localhost:5000/shared/api.js",
|
||
|
|
"@shared/composables": "http://localhost:5000/shared/composables.js",
|
||
|
|
"@shared/types": "http://localhost:5000/shared/types.js"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- 预加载关键模块 -->
|
||
|
|
<link rel="modulepreload" href="http://localhost:5000/shared/components.js">
|
||
|
|
<link rel="modulepreload" href="http://localhost:5000/shared/utils.js">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
|
||
|
|
<!-- ES Module 入口 -->
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|