1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-12 05:38:04 +09:00
elk/middleware/auth.ts

9 lines
223 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware((to) => {
if (process.server)
return
2022-11-23 08:08:36 +09:00
if (!currentUser.value)
return navigateTo(`/${currentServer.value}/public`)
if (to.path === '/')
return navigateTo('/home')
})