11 lines
442 B
TypeScript
11 lines
442 B
TypeScript
import { createClient } from '@supabase/supabase-js';
|
|
|
|
const supabaseUrl = import.meta.env.SUPABASE_URL || process.env.SUPABASE_URL;
|
|
const supabaseAnonKey = import.meta.env.SUPABASE_ANON_KEY || process.env.SUPABASE_ANON_KEY;
|
|
|
|
if (!supabaseUrl || !supabaseAnonKey) {
|
|
console.warn('Warning: Supabase credentials are not defined in environmental variables.');
|
|
}
|
|
|
|
export const supabase = createClient(supabaseUrl || '', supabaseAnonKey || '');
|