mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-18 13:25:52 +00:00
- Renamed server-new.ts → server.ts - Renamed app-new.ts → app.ts - Renamed app-new-entry.ts → app-entry.ts - Updated package.json scripts to remove all -new references - Updated custom element name from vibetunnel-app-new to vibetunnel-app - Updated index.html to reference cleaned up files - Added CLAUDE.md with development notes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
No EOL
809 B
HTML
23 lines
No EOL
809 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>VibeTunnel - Terminal Multiplexer</title>
|
|
<link rel="stylesheet" type="text/css" href="https://unpkg.com/asciinema-player@3.7.0/dist/bundle/asciinema-player.css" />
|
|
<link href="output.css" rel="stylesheet">
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"lit": "https://cdn.skypack.dev/lit",
|
|
"lit/": "https://cdn.skypack.dev/lit/"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body class="bg-vs-bg m-0 p-0">
|
|
<vibetunnel-app></vibetunnel-app>
|
|
<script src="https://unpkg.com/asciinema-player@3.7.0/dist/bundle/asciinema-player.min.js"></script>
|
|
<script type="module" src="app-entry.js"></script>
|
|
</body>
|
|
</html> |