Skip Auth

Open src/router/MainRoutes.ts

const MainRoutes = {
  path: '/main',
  meta: {
    requiresAuth: false // Set to false
  },
  redirect: '/main/dashboard/default',
  component: () => import('@/layouts/full/FullLayout.vue'),
  children: [
    // Other content here
  ]
};

export default MainRoutes;

Last updated