debug: BasicApp으로 전환하여 Vercel 배포 문제 디버깅

- App.tsx 대신 BasicApp.tsx로 전환
- 환경 변수 로깅 강화
- Vercel에서 발생하는 공백 페이지 문제 해결 시도
This commit is contained in:
hansoo
2025-07-15 05:22:03 +09:00
parent 7c92e60a53
commit 3463c836e7
4 changed files with 75 additions and 6 deletions

View File

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