managarten/apps-archived/nutriphi/apps/web/src/hooks.server.ts
Wuesteon 9c47119535 Fix wrong type
import, make auth and chat work
2025-12-04 23:25:25 +01:00

9 lines
231 B
TypeScript

import {Handle } from '@sveltejs/kit';
/**
* Server hooks for Nutriphi Web
* Authentication is handled client-side via Mana Middleware
*/
export const handle: Handle = async ({ event, resolve }) => {
return resolve(event);
};