opnform-host-nginx/client/middleware/guest.js

9 lines
196 B
JavaScript
Raw Normal View History

export default defineNuxtRouteMiddleware(() => {
2023-12-16 19:21:03 +01:00
const authStore = useAuthStore()
if (authStore.check) {
console.log("redirecting to home")
return navigateTo({ name: "home" })
2023-12-16 19:21:03 +01:00
}
})