2025-10-14 22:53:26 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>ECS Framework Editor</title>
|
2025-11-25 22:23:19 +08:00
|
|
|
<!-- ES Module Shims: 为不支持 Import Maps 的浏览器提供 polyfill -->
|
|
|
|
|
<script async src="https://ga.jspm.io/npm:es-module-shims@1.10.0/dist/es-module-shims.js"></script>
|
2025-10-14 22:53:26 +08:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
2025-11-25 22:23:19 +08:00
|
|
|
<!-- Import Map 将由 PluginLoader 在运行时动态注入 -->
|
2025-10-14 22:53:26 +08:00
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|