mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 16:00:38 +00:00
46d486960a
Collapsible sidebar (full-screen overlay on mobile), hamburger menu, bottom pane switcher bar for full (Claude/Backend/Frontend) and sandbox (Claude/Shell) profiles, auto-zoom into Claude pane on mobile connect, larger terminal font on mobile, and iOS overscroll prevention. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
360 B
HTML
16 lines
360 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<title>Windmill Dev Dashboard</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|