feat: Implement comprehensive Clerk ChunkLoadError recovery system
✨ Enhanced chunk error detection and automatic fallback to Supabase auth - Enhanced isClerkChunkError with specific CDN pattern matching (joint-cheetah-86.clerk.accounts.dev) - Added automatic Clerk disable when chunk loading fails - Implemented graceful fallback to Supabase authentication without interruption - Added user-friendly error messages and recovery UI - Created multi-layered error handling across ErrorBoundary, ClerkProvider, and global handlers - Added vite.config optimization for chunk loading with retry logic 🔧 Core improvements: - setupChunkErrorProtection() now activates immediately in main.tsx - Enhanced ClerkProvider with comprehensive error state handling - App.tsx ErrorBoundary detects and handles Clerk-specific chunk errors - Automatic sessionStorage flags for Clerk disable/skip functionality - URL parameter support for noClerk=true debugging 🚀 User experience: - Seamless transition from Clerk to Supabase when CDN fails - No app crashes or white screens during authentication failures - Automatic page refresh with fallback authentication system - Clear error messages explaining recovery process This resolves the ChunkLoadError: Loading chunk 344 failed from Clerk CDN and ensures the app remains functional with Supabase authentication fallback. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { logger } from "@/utils/logger";
|
||||
import { BrowserRouter } from "react-router-dom";
|
||||
import { setupChunkErrorProtection } from "@/utils/chunkErrorProtection";
|
||||
import App from "./App.tsx";
|
||||
import "./index.css";
|
||||
|
||||
logger.info("main.tsx loaded");
|
||||
|
||||
// 청크 로딩 오류 보호 시스템 즉시 활성화
|
||||
setupChunkErrorProtection();
|
||||
|
||||
// iOS 안전 영역 메타 태그 추가
|
||||
const setViewportMetaTag = () => {
|
||||
// 기존 viewport 메타 태그 찾기
|
||||
|
||||
Reference in New Issue
Block a user