feat(route): leptos

This commit is contained in:
zhangheng
2026-06-08 16:37:22 +08:00
parent 598eae42e0
commit e5f7c2340a

View File

@@ -27,6 +27,10 @@ export const subConfigList: { source: string; url: string }[] =
source: "/mgt", source: "/mgt",
url: "http://localhost:5535", url: "http://localhost:5535",
}, },
{
source: "/rustui",
url: "http://localhost:3100",
},
] ]
: process.env.NEXT_PUBLIC_ENV === "staging" : process.env.NEXT_PUBLIC_ENV === "staging"
? [ ? [
@@ -117,6 +121,11 @@ export const componentList: MenuItem[] = [
url: "mgt", url: "mgt",
icon: "ManagementCenterIcon", icon: "ManagementCenterIcon",
}, },
{
title: "RustUI",
url: "rustui",
icon: "ManagementCenterIcon",
},
] ]
export const showList: MenuItem[] = [] export const showList: MenuItem[] = []