This commit is contained in:
2026-04-18 23:11:35 +02:00
commit f7cfd2a86e
196 changed files with 35538 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { createClient } from '@chat-app/shared/supabase';
import { env } from './env';
import { localStorageAdapter } from './storage';
export const supabase = createClient({
url: env.supabaseUrl,
anonKey: env.supabaseAnonKey,
sessionStorage: localStorageAdapter,
// We manually parse the callback URL in App.tsx because Tauri webview
// loads a fresh route rather than appending hash params to the current one.
detectSessionInUrl: false,
});