70ee5e33da
- move the management frontend under the wasmeld-console crate - use a persistent Host shell with disposable iframe page documents - version Host/Page postMessage state and command contracts - migrate runtime, service, WIT, invocation, and settings workflows - add Tailwind CSS v4, responsive layouts, and Host-owned dialogs - emit a dependency-free PWA worker with API cache exclusions - remove the superseded root TanStack Start application
14 lines
407 B
HTML
14 lines
407 B
HTML
<!doctype html>
|
|
<html lang="zh-CN" class="frame-root">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#f4f7f6" />
|
|
<title>Wasmeld Console Page</title>
|
|
</head>
|
|
<body class="frame-document">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/pages/main.tsx"></script>
|
|
</body>
|
|
</html>
|