mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 02:19:41 +02:00
9 lines
231 B
TypeScript
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);
|
|
};
|