mika-agent-assist/supabase/functions/_shared/cors.ts
gpt-engineer-app[bot] 71d0c59d69 Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
2026-04-17 18:48:11 +00:00

6 lines
218 B
TypeScript

export const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers":
"authorization, x-client-info, apikey, content-type",
"Access-Control-Allow-Methods": "POST, GET, OPTIONS",
};