You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Support SvelteKit for getAuthCookieString and associated functions.
Is your feature request related to a problem? Please describe.
A breaking change in SvelteKit broke getAuthCookieString, setAuthCookie, deleteAuthCookie, etc. (sveltejs/kit#3384). This means server-side auth on SvelteKit is effectively broken, although you can use a workaround (supabase/supabase#5218).
Describe the solution you'd like
Support native fetch Request objects directly. One implementation approach may be to "expressify" these native requests by constructing a mock object which allows interop with the existing methods.