From dbfcc1b01163736d52c6261547bf8806d676bdbc Mon Sep 17 00:00:00 2001 From: zstar <65890619+zstar1003@users.noreply.github.com> Date: Mon, 24 Mar 2025 21:57:30 +0800 Subject: [PATCH] =?UTF-8?q?refactor(routes):=20=E7=A7=BB=E9=99=A4=E8=B0=83?= =?UTF-8?q?=E8=AF=95=E8=81=8A=E5=A4=A9=E9=A1=B5=E9=9D=A2=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除不再使用的debug聊天页面路由,解决debug页面丢失问题 --- web/src/routes.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/src/routes.ts b/web/src/routes.ts index 4e82112..77010c7 100644 --- a/web/src/routes.ts +++ b/web/src/routes.ts @@ -24,11 +24,6 @@ export enum Routes { } const routes = [ - { - path: '/debug/chat', - component: '@/pages/debug/chat-debug', - layout: false, - }, { path: '/login', component: '@/pages/login',