Some checks failed
Release / build-and-release (push) Has been cancelled
Fix updater: strip v-prefix from version in latest.json, and delete old package before re-uploading to avoid 409 conflicts. Add frontend log capture (console intercept) with a log viewer card in the settings page (filterable, copyable, clearable). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
569 B
TypeScript
20 lines
569 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App";
|
|
import { ProfileProvider } from "./contexts/ProfileContext";
|
|
import ErrorBoundary from "./components/shared/ErrorBoundary";
|
|
import { initLogCapture } from "./services/logService";
|
|
import "./i18n/config";
|
|
import "./styles.css";
|
|
|
|
initLogCapture();
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<ProfileProvider>
|
|
<ErrorBoundary>
|
|
<App />
|
|
</ErrorBoundary>
|
|
</ProfileProvider>
|
|
</React.StrictMode>,
|
|
);
|