25 lines
661 B
HTML
25 lines
661 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title></title>
|
|
<script>
|
|
// 在资源加载前设置 base 标签
|
|
(function() {
|
|
var baseUrl = window.__BASE_URL__;
|
|
if (baseUrl) {
|
|
var base = document.createElement('base');
|
|
base.href = baseUrl + '/';
|
|
document.head.appendChild(base);
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|