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:
gpt-engineer-app[bot]
2025-03-18 06:01:31 +00:00
parent d477febbf5
commit 30730c5cd0
3 changed files with 16 additions and 15 deletions

View File

@@ -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);