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