- 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
11 lines
230 B
TypeScript
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>,
|
|
)
|