mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add experimental app routes
This commit is contained in:
parent
12c1ae3590
commit
fc0f0694db
8 changed files with 440 additions and 2 deletions
8
src/routes/experimentalAppRoutes/asyncRoutes/user.ts
Normal file
8
src/routes/experimentalAppRoutes/asyncRoutes/user.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
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' }
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue