This commit is contained in:
='fauz 2025-10-30 15:32:35 +07:00
parent e09af27909
commit 4035a28705

View File

@ -70,9 +70,9 @@ router.beforeEach(async(to, from, next) => {
// return next('/')
// }
if (to.meta.requiresAuth && !isLoggedIn) {
return next("/login");
}
// if (to.meta.requiresAuth && !isLoggedIn) {
// return next("/login");
// }
return next();
});