mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
export default defineNuxtPlugin({
|
|
async setup() {
|
|
const auth = useAuthBackend();
|
|
|
|
console.debug("Initializing auth plugin");
|
|
await auth.getSession();
|
|
console.debug("Auth plugin initialized");
|
|
},
|
|
});
|