feat: implement ssh forwarding

This commit is contained in:
2024-11-17 18:10:35 +00:00
parent a7933f8b06
commit 45bfbe093a
21 changed files with 1175 additions and 296 deletions

View File

@@ -124,11 +124,8 @@ function _TemplateEditor({
return (
<TemplateEditorStoreContext.Provider value={store.current}>
<SidebarProvider>
<aside>
<EditorSidebar />
</aside>
<div className="flex flex-col w-full">
<EditorSidebar />
<div className="flex flex-col w-full min-w-0">
<EditorTopBar />
<main className="w-full h-full flex flex-col">
<Editor />
@@ -301,7 +298,7 @@ function TemplateBuildOutputPanel() {
return (
<div
className={cn(
"flex flex-col overflow-hidden",
"flex flex-col overflow-hidden w-full",
isBuildOutputVisible ? "h-96" : "",
)}
>