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
This commit is contained in:
2026-01-28 17:20:15 +01:00
parent 904dcd8260
commit 4b38da3b85
4 changed files with 6 additions and 58 deletions

View File

@@ -3,12 +3,6 @@ import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
// #region agent log
try {
fetch('http://127.0.0.1:7242/ingest/4fa7412d-6f79-4871-8728-29c37c9e5772',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({location:'main.tsx:8',message:'App starting',data:{rootExists:!!document.getElementById('root')},timestamp:Date.now(),sessionId:'debug-session',runId:'run1',hypothesisId:'C'})}).catch(()=>{});
} catch(e) {}
// #endregion
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />