Remove on-premise Supabase code
\ Removes code related to on-premise Supabase connections, ensuring the application uses the cloud version.
This commit is contained in:
@@ -10,7 +10,7 @@ let supabaseClient;
|
||||
try {
|
||||
console.log(`Supabase 클라이언트 생성 중: ${supabaseUrl}`);
|
||||
|
||||
// Supabase 클라이언트 생성
|
||||
// Supabase 클라이언트 생성 - Cloud 환경에 최적화
|
||||
supabaseClient = createClient(supabaseUrl, supabaseAnonKey, {
|
||||
auth: {
|
||||
autoRefreshToken: true,
|
||||
@@ -18,7 +18,7 @@ try {
|
||||
}
|
||||
});
|
||||
|
||||
console.log('Supabase 클라이언트가 생성되었습니다.');
|
||||
console.log('Supabase 클라이언트가 성공적으로 생성되었습니다.');
|
||||
|
||||
} catch (error) {
|
||||
console.error('Supabase 클라이언트 생성 오류:', error);
|
||||
|
||||
Reference in New Issue
Block a user