import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import '@/styles/global.scss'; import { INLINE_LOGO_JPEG } from '@/assets/logoInline'; import App from './App.tsx'; document.title = 'CLI Proxy API Management Center'; const faviconEl = document.querySelector('link[rel="icon"]'); if (faviconEl) { faviconEl.href = INLINE_LOGO_JPEG; faviconEl.type = 'image/jpeg'; } else { const newFavicon = document.createElement('link'); newFavicon.rel = 'icon'; newFavicon.type = 'image/jpeg'; newFavicon.href = INLINE_LOGO_JPEG; document.head.appendChild(newFavicon); } createRoot(document.getElementById('root')!).render( );