ClareVoiceV1 / web /src /main.tsx
claudqunwang's picture
fix: 添加 ErrorBoundary 防白屏 + 启动时打印 RAG/Weaviate 状态
6f676a0
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import { ErrorBoundary } from "./ErrorBoundary.tsx";
import "./index.css";
createRoot(document.getElementById("root")!).render(
<ErrorBoundary>
<App />
</ErrorBoundary>
);