import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import App from './App' import './index.css' // When opened from the portal's install button (?install=1), trigger the // PWA install prompt as soon as the browser offers it (Chrome/Edge only). if (new URLSearchParams(window.location.search).has('install')) { window.addEventListener('beforeinstallprompt', e => { e.preventDefault() ;(e as Event & { prompt: () => Promise }).prompt() }, { once: true }) } createRoot(document.getElementById('root')!).render( )