diff --git a/config/routes.ts b/config/routes.ts index b5a7b748..f4d076a4 100644 --- a/config/routes.ts +++ b/config/routes.ts @@ -32,11 +32,14 @@ export default [ icon: 'crown', access: 'canAdmin', routes: [ + { + path: '/admin', + redirect: '/admin/sub-page', + }, { path: '/admin/sub-page', name: 'sub-page', - icon: 'smile', - component: './Welcome', + component: './Admin', }, ], },