Files
Emailsorter/client/src/main.tsx
ANDJ 4b38da3b85 fix: Remove debug logs & fix favicon for production
- Remove all debug logs (127.0.0.1:7242) that cause errors in production
- Fix site.webmanifest to use existing SVG icons instead of missing PNG files
- Build erfolgreich
2026-01-28 17:20:15 +01:00

11 lines
230 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)