feat: add platform-test plugin with diagnostics panel and backend sidecar

This commit is contained in:
2026-06-16 12:01:42 +08:00
parent 2f6a084f63
commit 8ca5617d0a
5 changed files with 337 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Platform Test</title>
<style>
* { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
background: transparent;
color: #e0e0e0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="platform-test-root"></div>
<script type="module" src="./dist/index.js"></script>
</body>
</html>