fix: No Redirect On Valid Token (#6327)

This commit is contained in:
Michael Genson
2025-10-06 13:02:25 -05:00
committed by GitHub
parent 8ab69a7d7a
commit a17b0e329e
3 changed files with 12 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
export default defineNuxtPlugin({
async setup() {
const auth = useAuthBackend();
console.debug("Initializing auth plugin");
await auth.getSession();
console.debug("Auth plugin initialized");
},
});