mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
9 lines
290 B
TypeScript
9 lines
290 B
TypeScript
![]() |
import { AsyncRoute } from '../../AsyncRoute';
|
||
|
|
||
|
export const ASYNC_USER_ROUTES: AsyncRoute[] = [
|
||
|
{ path: 'search.html', page: 'search' },
|
||
|
{ path: 'userprofile.html', page: 'user/userprofile' },
|
||
|
{ path: 'home.html', page: 'home' },
|
||
|
{ path: 'movies.html', page: 'movies' }
|
||
|
];
|