Land to dashboard directly without authentication using meta content.
Open src/router/MainRoutes.ts
constMainRoutes= { path:'/main', meta: { requiresAuth:false// Set to false }, redirect:'/main/dashboard/default',component: () =>import('@/layouts/full/FullLayout.vue'), children: [// Other content here ]};exportdefault MainRoutes;