From d5f8752ce5ea0eb21209c0c400e5e9f7b6bc77cb Mon Sep 17 00:00:00 2001 From: Johnny Silverhand Date: Tue, 2 Feb 2021 03:12:23 +0300 Subject: [PATCH] Update router.js with proper subpaths --- src/router.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/router.js b/src/router.js index 84fa437..25ba912 100644 --- a/src/router.js +++ b/src/router.js @@ -28,12 +28,12 @@ const routes = [ } }, { - path: '/tracklist/:type/:id', + path: window.location.pathname + 'tracklist/:type/:id', name: 'Tracklist', component: Tracklist }, { - path: '/artist/:id', + path: window.location.pathname + 'artist/:id', name: 'Artist', component: Artist, meta: { @@ -41,22 +41,22 @@ const routes = [ } }, { - path: '/album/:id', + path: window.location.pathname + 'album/:id', name: 'Album', component: Tracklist }, { - path: '/playlist/:id', + path: window.location.pathname + 'playlist/:id', name: 'Playlist', component: Tracklist }, { - path: '/spotify-playlist/:id', + path: window.location.pathname + 'spotify-playlist/:id', name: 'Spotify Playlist', component: Tracklist }, { - path: '/charts', + path: window.location.pathname + 'charts', name: 'Charts', component: Charts, meta: { @@ -64,7 +64,7 @@ const routes = [ } }, { - path: '/favorites', + path: window.location.pathname + 'favorites', name: 'Favorites', component: Favorites, meta: { @@ -72,37 +72,37 @@ const routes = [ } }, { - path: '/errors', + path: window.location.pathname + 'errors', name: 'Errors', component: Errors }, { - path: '/link-analyzer', + path: window.location.pathname + 'link-analyzer', name: 'Link Analyzer', component: LinkAnalyzer }, { - path: '/about', + path: window.location.pathname + 'about', name: 'About', component: About }, { - path: '/info-arl', + path: window.location.pathname + 'info-arl', name: 'ARL', component: InfoArl }, { - path: '/info-spotify', + path: window.location.pathname + 'info-spotify', name: 'Spotify Features', component: InfoSpotifyFeatures }, { - path: '/settings', + path: window.location.pathname + 'settings', name: 'Settings', component: Settings }, { - path: '/search', + path: window.location.pathname + 'search', name: 'Search', component: Search, meta: { -- GitLab