now people can join and leave the game

This commit is contained in:
RezHackXYZ 2025-05-12 10:22:19 +05:30
parent bf582efc46
commit f83f50d9b2
No known key found for this signature in database
12 changed files with 408 additions and 22 deletions

6
src/lib/supabase.js Normal file
View file

@ -0,0 +1,6 @@
import { createClient } from '@supabase/supabase-js';
export const supabase = createClient(
import.meta.env.VITE_SUPABASE_URL,
import.meta.env.VITE_SUPABASE_ANON_KEY
);