and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

...
 
Commits (2)
...@@ -28,12 +28,12 @@ const routes = [ ...@@ -28,12 +28,12 @@ const routes = [
} }
}, },
{ {
path: 'tracklist/:type/:id', path: '/tracklist/:type/:id',
name: 'Tracklist', name: 'Tracklist',
component: Tracklist component: Tracklist
}, },
{ {
path: 'artist/:id', path: '/artist/:id',
name: 'Artist', name: 'Artist',
component: Artist, component: Artist,
meta: { meta: {
...@@ -41,22 +41,22 @@ const routes = [ ...@@ -41,22 +41,22 @@ const routes = [
} }
}, },
{ {
path: 'album/:id', path: '/album/:id',
name: 'Album', name: 'Album',
component: Tracklist component: Tracklist
}, },
{ {
path: 'playlist/:id', path: '/playlist/:id',
name: 'Playlist', name: 'Playlist',
component: Tracklist component: Tracklist
}, },
{ {
path: 'spotify-playlist/:id', path: '/spotify-playlist/:id',
name: 'Spotify Playlist', name: 'Spotify Playlist',
component: Tracklist component: Tracklist
}, },
{ {
path: 'charts', path: '/charts',
name: 'Charts', name: 'Charts',
component: Charts, component: Charts,
meta: { meta: {
...@@ -64,7 +64,7 @@ const routes = [ ...@@ -64,7 +64,7 @@ const routes = [
} }
}, },
{ {
path: 'favorites', path: '/favorites',
name: 'Favorites', name: 'Favorites',
component: Favorites, component: Favorites,
meta: { meta: {
...@@ -72,37 +72,37 @@ const routes = [ ...@@ -72,37 +72,37 @@ const routes = [
} }
}, },
{ {
path: 'errors', path: '/errors',
name: 'Errors', name: 'Errors',
component: Errors component: Errors
}, },
{ {
path: 'link-analyzer', path: '/link-analyzer',
name: 'Link Analyzer', name: 'Link Analyzer',
component: LinkAnalyzer component: LinkAnalyzer
}, },
{ {
path: 'about', path: '/about',
name: 'About', name: 'About',
component: About component: About
}, },
{ {
path: 'info-arl', path: '/info-arl',
name: 'ARL', name: 'ARL',
component: InfoArl component: InfoArl
}, },
{ {
path: 'info-spotify', path: '/info-spotify',
name: 'Spotify Features', name: 'Spotify Features',
component: InfoSpotifyFeatures component: InfoSpotifyFeatures
}, },
{ {
path: 'settings', path: '/settings',
name: 'Settings', name: 'Settings',
component: Settings component: Settings
}, },
{ {
path: 'search', path: '/search',
name: 'Search', name: 'Search',
component: Search, component: Search,
meta: { meta: {
...@@ -165,3 +165,4 @@ router.beforeEach((to, from, next) => { ...@@ -165,3 +165,4 @@ router.beforeEach((to, from, next) => {
}) })
export default router export default router
This diff is collapsed.
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
font-family: 'Material Icons'; font-family: 'Material Icons';
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: url('fonts//icons/MaterialIcons-Regular.eot'); /* For IE6-8 */ src: url('fonts/icons/MaterialIcons-Regular.eot'); /* For IE6-8 */
src: url('fonts//icons/MaterialIcons-Regular.woff2') format('woff2'), src: url('fonts/icons/MaterialIcons-Regular.woff2') format('woff2'),
url('fonts//icons/MaterialIcons-Regular.woff') format('woff'), url('fonts/icons/MaterialIcons-Regular.woff') format('woff'),
url('fonts//icons/MaterialIcons-Regular.ttf') format('truetype'); url('fonts/icons/MaterialIcons-Regular.ttf') format('truetype');
} }
.material-icons { .material-icons {
......