Some checks failed
Build and Publish / build-release (push) Failing after 1m31s
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
export default defineNuxtRouteMiddleware((to) => {
|
|
const { status } = useAuth()
|
|
|
|
if (status.value === 'unauthenticated' && to.path !== '/login') {
|
|
return navigateTo('/login')
|
|
}
|
|
}) |