mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-08 12:47:49 +00:00
10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
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); |