1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add music view

This commit is contained in:
grafixeyehero 2023-10-28 22:10:46 +03:00 committed by Bill Thornton
parent 9e9274046e
commit a90d2f322e
5 changed files with 171 additions and 23 deletions

View file

@ -6,5 +6,6 @@ export const ASYNC_USER_ROUTES: AsyncRoute[] = [
{ 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 }
{ path: 'tv.html', page: 'shows', type: AsyncRouteType.Experimental },
{ path: 'music.html', page: 'music', type: AsyncRouteType.Experimental }
];