mirror of
https://github.com/gazer-y/mealie.git
synced 2026-06-22 00:05:52 +08: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");
|
|
},
|
|
});
|