修复快照完整性:raw/llm_wiki 由 gitlink 转为普通目录(.git 备份为 .git.bak),新增 .gitignore 排除 __pycache__/pyc 与子仓库元数据
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App";
|
||||
import "./index.css";
|
||||
import "@/i18n";
|
||||
import { loadAndApplyTheme, watchSystemTheme } from "@/lib/theme";
|
||||
|
||||
function applyPlatformClass() {
|
||||
const isTauri = "__TAURI_INTERNALS__" in window || "__TAURI__" in window;
|
||||
if (isTauri && navigator.userAgent.includes("Mac OS X")) {
|
||||
document.documentElement.classList.add("platform-macos");
|
||||
}
|
||||
}
|
||||
|
||||
// Apply theme before render to avoid flash
|
||||
async function initApp() {
|
||||
try {
|
||||
applyPlatformClass();
|
||||
await loadAndApplyTheme();
|
||||
watchSystemTheme();
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
} catch (err) {
|
||||
console.error("[startup] failed to initialize LLM Wiki:", err);
|
||||
const root = document.getElementById("root");
|
||||
if (root) {
|
||||
const message = err instanceof Error ? (err.stack ?? err.message) : String(err);
|
||||
root.innerHTML = `
|
||||
<div style="font-family: system-ui, sans-serif; padding: 24px; color: #111; color: light-dark(#111, #f5f5f5); background: #fff; background: light-dark(#fff, #111); min-height: 100vh; color-scheme: light dark;">
|
||||
<h1 style="font-size: 18px; margin: 0 0 12px;">LLM Wiki failed to start</h1>
|
||||
<p style="margin: 0 0 12px;">The frontend startup code threw an error before React could render.</p>
|
||||
<pre style="white-space: pre-wrap; border: 1px solid light-dark(#ddd, #333); border-radius: 8px; padding: 12px; background: light-dark(#f7f7f7, #1d1d1d);">${message.replace(/[&<>"']/g, (ch) => ({
|
||||
"&": "&",
|
||||
"<": "<",
|
||||
">": ">",
|
||||
'"': """,
|
||||
"'": "'",
|
||||
}[ch] ?? ch))}</pre>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
initApp();
|
||||
Reference in New Issue
Block a user