debug: BasicApp으로 전환하여 Vercel 배포 문제 디버깅
- App.tsx 대신 BasicApp.tsx로 전환 - 환경 변수 로깅 강화 - Vercel에서 발생하는 공백 페이지 문제 해결 시도
This commit is contained in:
@@ -3,7 +3,8 @@ import { logger } from "@/utils/logger";
|
||||
import { BrowserRouter } from "react-router-dom";
|
||||
import { setupChunkErrorProtection } from "@/utils/chunkErrorProtection";
|
||||
// import App from "./App.tsx";
|
||||
import MinimalApp from "./MinimalApp.tsx";
|
||||
// import MinimalApp from "./MinimalApp.tsx";
|
||||
import BasicApp from "./BasicApp.tsx";
|
||||
import "./index.css";
|
||||
|
||||
logger.info("main.tsx loaded");
|
||||
@@ -122,7 +123,7 @@ try {
|
||||
|
||||
root.render(
|
||||
<BrowserRouter>
|
||||
<MinimalApp />
|
||||
<BasicApp />
|
||||
</BrowserRouter>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user