Set up a dedicated Account Setttings page to hold account specific settings such as the push notifications.
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
export default defineNuxtRouteMiddleware((to, from) => {
|
|
const { data: session } = useAccountSession();
|
|
|
|
if (!session.value) {
|
|
console.log("Not logged in, redirecting to /login");
|
|
return navigateTo("/login");
|
|
}
|
|
})
|