feat(admin): add config page to admin (#7619)

This commit is contained in:
JimmFly
2024-08-13 14:38:39 +08:00
committed by GitHub
parent 83a9beed83
commit 7f7c0519a0
6 changed files with 351 additions and 0 deletions

View File

@@ -55,6 +55,10 @@ export const router = _createBrowserRouter(
path: '/admin/setup',
lazy: () => import('./modules/setup'),
},
{
path: '/admin/config',
lazy: () => import('./modules/config'),
},
],
},
],