Fix import error in App.tsx

Corrected the import path for SupabaseSettings in App.tsx to resolve a module resolution error.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 22:38:05 +00:00
parent 439653fa2f
commit 9ff0592e33
6 changed files with 184 additions and 2 deletions

View File

@@ -12,3 +12,16 @@ export const getSupabaseKey = () => {
export const isValidSupabaseKey = () => {
return true; // Supabase Cloud에서는 항상 유효함
};
// CORS 프록시 관련 함수들
export const isCorsProxyEnabled = () => {
return false; // Supabase Cloud에서는 CORS 프록시가 필요 없음
};
export const getProxyType = () => {
return 'none'; // Supabase Cloud에서는 프록시가 필요 없음
};
export const getOriginalSupabaseUrl = () => {
return getSupabaseUrl(); // 원본 URL 반환 (프록시 없음)
};