import type { RequestHandler } from './$types'; export const GET: RequestHandler = async ({ locals}) => { await locals.supabase.auth.signOut(); const html = ` `; return new Response(html, { headers: { 'Content-Type': 'text/html' } }); };