This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
export default defineNuxtPlugin(async () => {
|
||||
const { checkAuth } = useAuth();
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
|
||||
// Check authentication status on app startup
|
||||
await checkAuth();
|
||||
// Skip auth check on public pages
|
||||
const publicPages = ['/login', '/signup', '/auth/callback', '/forgot-password'];
|
||||
const isPublicPage = publicPages.some(page => route.path.startsWith(page));
|
||||
|
||||
if (!isPublicPage) {
|
||||
const { checkAuth } = useAuth();
|
||||
// Check authentication status on app startup for non-public pages
|
||||
await checkAuth();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user