Implement SvelteKit webhook relay with SSE, auth, and real-time features

Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
This commit is contained in:
Cursor Agent
2025-08-30 03:33:33 +00:00
parent b991b38553
commit 40a7c607f6
32 changed files with 2482 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { handle as authHandle } from '$auth';
import { sequence } from '@sveltejs/kit/hooks';
import type { Handle } from '@sveltejs/kit';
const customHandle: Handle = async ({ event, resolve }) => {
// Add custom server-side logic here if needed
return resolve(event);
};
export const handle = sequence(authHandle, customHandle);