const ActivateView = () => import('../views/auth/ActivateView.vue'); const OAuthCallbackView = () => import('../views/auth/OAuthCallbackView.vue'); const OAuthUserCallbackView = () => import('../views/auth/OAuthUserCallbackView.vue'); const authRoutes = [ { path: '/activate', name: 'Activate page', component: ActivateView, meta: { robots: 'noindex, nofollow' } }, { path: '/auth/oauth/callback', name: 'OAuth callback', component: OAuthCallbackView, meta: { robots: 'noindex, nofollow' } }, { path: '/auth/oauth/user/callback', name: 'OAuth user callback', component: OAuthUserCallbackView, meta: { robots: 'noindex, nofollow' } }, ]; export default authRoutes;