Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "selfhost-helper",
"version": "0.38.0",
"version": "0.39.0",
"description": "Node.js Project Manager",
"main": "electron/main.js",
"type": "module",
Expand Down Expand Up @@ -115,6 +115,7 @@
"wait-on": "latest"
},
"dependencies": {
"@eleung/react-grid-layout": "^1.8.3",
"@hello-pangea/dnd": "^18.0.1",
"@monaco-editor/react": "latest",
"@radix-ui/react-context-menu": "^2.2.16",
Expand Down
4 changes: 3 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import LogViewer from "./components/LogViewer";
import EditorView from "./components/EditorView";
import TunnelView from "./components/TunnelView";
import ResourcesTab from "./components/ResourcesTab";
import OverviewView from "./components/OverviewView";
import TitleBar from "./components/TitleBar";
import { HashRouter as Router, Routes, Route, Navigate } from "react-router-dom";

Expand Down Expand Up @@ -40,11 +41,12 @@ function App() {
<Route path="/" element={<Dashboard />}>
<Route index element={<EmptyState />} />
<Route path="project/:projectId" element={<ProjectLayout />}>
<Route index element={<Navigate to="console" replace />} />
<Route index element={<Navigate to="overview" replace />} />
<Route path="console" element={<LogViewer />} />
<Route path="editor" element={<EditorView />} />
<Route path="tunnel" element={<TunnelView />} />
<Route path="resources" element={<ResourcesTab />} />
<Route path="overview" element={<OverviewView />} />
</Route>
</Route>
<Route path="/settings" element={<Settings />}>
Expand Down
Loading
Loading