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' }