diff --git a/src/router/routes.js b/src/router/routes.js index 01df723..79168a5 100644 --- a/src/router/routes.js +++ b/src/router/routes.js @@ -13,9 +13,9 @@ const routes = [ { path: 'newAccount', component: () => import('pages/NewAccount.vue') }, { path: 'emailVerification', component: () => import('pages/EmailVerification.vue') }, { path: 'me', component: () => import('pages/Me.vue') }, - { path: 'user/:id', redirect: 'user/:id/collections' }, + { path: 'user/:id', redirect: 'user/:id/profile' }, { path: 'user/:id/:tab', component: () => import('pages/UserProfile.vue'), meta: { customBarTitle: true } }, - { path: 'author/:id', redirect: 'author/:id/posts' }, + { path: 'author/:id', redirect: 'author/:id/profile' }, { path: 'author/:id/:tab', component: () => import('pages/AuthorProfile.vue'), meta: { customBarTitle: true } }, { path: 'search', redirect: 'search/posts' }, { path: 'search/:tab', component: () => import('pages/Search.vue') },