1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/apps/stable/routes/asyncRoutes/user.ts

7 lines
228 B
TypeScript
Raw Normal View History

2023-04-27 17:04:33 -04:00
import { AsyncRoute } from '../../../../components/router/AsyncRoute';
2022-11-01 16:41:09 -04:00
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
2023-05-02 01:42:23 -04:00
{ path: 'search.html', page: 'search' },
{ path: 'userprofile.html', page: 'user/userprofile' }
2022-11-01 16:41:09 -04:00
];