got some lib exports done and WIP user login flow

This commit is contained in:
2026-01-25 16:53:56 -06:00
parent a9bf8317f4
commit 7b04aa3116
9 changed files with 838 additions and 355 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Handle } from '@sveltejs/kit';
export const handle: Handle = async ({ event, resolve }) => {
if (event.url.pathname.startsWith('/custom')) {
return new Response('custom response');
}
const response = await resolve(event);
return response;
};