mastra
Version:
cli for mastra
41 lines (35 loc) • 1.07 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/mastra.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mastra Playground</title>
<script>
function connectSSE() {
const events = new EventSource('/refresh-events');
events.onmessage = event => {
if (event.data === 'refresh') {
window.location.reload();
}
};
events.onerror = () => {
events.close();
setTimeout(connectSSE, 1000);
};
window.addEventListener('beforeunload', () => {
events.close();
});
}
connectSSE();
</script>
<script type="module" crossorigin src="/assets/index-RjmNiQs6.js"></script>
<link rel="stylesheet" crossorigin href="/assets/style-BnGp4Od9.css">
</head>
<body>
<script>
window.MASTRA_TELEMETRY_DISABLED = '%%MASTRA_TELEMETRY_DISABLED%%';
</script>
<div id="root" class="dark"></div>
</body>
</html>