mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
When selecting equations and using copy paste, uses the correct latex code. Co-authored-by: Ruben Talstra <RubenTalstra1211@outlook.com>
18 lines
509 B
JavaScript
18 lines
509 B
JavaScript
import 'regenerator-runtime/runtime';
|
|
import { createRoot } from 'react-dom/client';
|
|
import './locales/i18n';
|
|
import App from './App';
|
|
import './style.css';
|
|
import './mobile.css';
|
|
import { ApiErrorBoundaryProvider } from './hooks/ApiErrorBoundaryContext';
|
|
import 'katex/dist/katex.min.css';
|
|
import 'katex/dist/contrib/copy-tex.js';
|
|
|
|
const container = document.getElementById('root');
|
|
const root = createRoot(container);
|
|
|
|
root.render(
|
|
<ApiErrorBoundaryProvider>
|
|
<App />
|
|
</ApiErrorBoundaryProvider>,
|
|
);
|