33 lines
875 B
HTML
33 lines
875 B
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>泰豪电源 AI 数智化平台</title>
|
||
|
|
|
||
|
|
<!-- Import Maps 配置 - 只配置共享模块 -->
|
||
|
|
<script type="importmap">
|
||
|
|
{
|
||
|
|
"imports": {
|
||
|
|
"@shared/components": "/shared/components.js",
|
||
|
|
"@shared/utils": "/shared/utils.js",
|
||
|
|
"@shared/api": "/shared/api.js",
|
||
|
|
"@shared/composables": "/shared/composables.js",
|
||
|
|
"@shared/types": "/shared/types.js"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- 预加载关键模块 -->
|
||
|
|
<link rel="modulepreload" href="/shared/components.js">
|
||
|
|
<link rel="modulepreload" href="/shared/utils.js">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
|
||
|
|
<!-- ES Module 入口 -->
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|