full working application and initial commit

This commit is contained in:
2026-06-04 18:39:39 +02:00
commit 8524179793
86 changed files with 10107 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { createConvexAuthHandlers } from '@mmailaender/convex-auth-svelte/sveltekit/server';
import type { LayoutServerLoad } from './$types.js';
const { getAuthState } = createConvexAuthHandlers();
export const load: LayoutServerLoad = async (event) => {
return {
authState: await getAuthState(event)
};
};