Initial commit

This commit is contained in:
2025-04-21 14:12:36 +02:00
commit 3fe2969b39
57 changed files with 17976 additions and 0 deletions

6
src/hooks.server.js Normal file
View File

@@ -0,0 +1,6 @@
// This is a placeholder hooks.server.js file
// We're using a standalone WebSocket server instead of integrating with SvelteKit hooks
export async function handle({ event, resolve }) {
return await resolve(event);
}