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/experimental/routes/asyncRoutes/user.ts

9 lines
400 B
TypeScript
Raw Normal View History

2023-05-01 16:50:41 -04:00
import { AsyncRoute, AsyncRouteType } from '../../../../components/router/AsyncRoute';
2023-04-13 00:47:34 +03:00
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
{ path: 'search.html', page: 'search' },
2023-05-02 01:42:23 -04:00
{ path: 'userprofile.html', page: 'user/userprofile' },
2023-05-01 16:50:41 -04:00
{ path: 'home.html', page: 'home', type: AsyncRouteType.Experimental },
{ path: 'movies.html', page: 'movies', type: AsyncRouteType.Experimental }
2023-04-13 00:47:34 +03:00
];