mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
10 lines
527 B
TypeScript
10 lines
527 B
TypeScript
import { AsyncRoute, AsyncRouteType } from '../../../../components/router/AsyncRoute';
|
|
|
|
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
|
|
{ path: 'quickconnect', page: 'quickConnect' },
|
|
{ path: 'search.html', page: 'search' },
|
|
{ path: 'userprofile.html', page: 'user/userprofile' },
|
|
{ path: 'home.html', page: 'home', type: AsyncRouteType.Experimental },
|
|
{ path: 'movies.html', page: 'movies', type: AsyncRouteType.Experimental },
|
|
{ path: 'tv.html', page: 'shows', type: AsyncRouteType.Experimental }
|
|
];
|