From 7ecea72ebd1002489fcaa1937b778af4a0cccab7 Mon Sep 17 00:00:00 2001 From: ocean2 Date: Mon, 1 Apr 2024 14:05:51 +0800 Subject: [PATCH] =?UTF-8?q?#feat=20v2=E8=B7=AF=E7=94=B1=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/routes/routes.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/routes/routes.ts b/src/app/routes/routes.ts index b665b2f..e11456d 100644 --- a/src/app/routes/routes.ts +++ b/src/app/routes/routes.ts @@ -27,6 +27,10 @@ export const routes: Routes = [ { path: 'data-v', loadChildren: () => import('./data-v/routes').then(m => m.routes) } ] }, + { + path: 'v2', + children: [{ path: '', loadChildren: () => import('./data-v/routes').then(m => m.routes) }] + }, { path: '', loadChildren: () => import('./passport/routes').then(m => m.routes) }, { path: 'exception', loadChildren: () => import('./exception/routes').then(m => m.routes) }, { path: '**', redirectTo: 'exception/404' }