export const route = { load: async () => { "use server"; const cookie = getCookie("chat_session"); if (!cookie) throw redirect("/"); }, };
© 2026 Hedgehog Software, LLC