pleroma-like client for Bluesky pl.hexmani.ac
bluesky pleroma social-media
1/* @refresh reload */ 2import { render } from 'solid-js/web'; 3import 'solid-devtools'; 4 5import App from './App'; 6 7const root = document.getElementById('root'); 8 9if (import.meta.env.DEV && !(root instanceof HTMLElement)) { 10 throw new Error( 11 'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?', 12 ); 13} 14 15render(() => <App />, root!);