···11+/* @refresh reload */
22+import "./index.css";
33+import { render } from "solid-js/web";
44+import "solid-devtools";
55+66+import App from "./App";
77+88+const root = document.getElementById("root");
99+1010+if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
1111+ throw new Error(
1212+ "Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
1313+ );
1414+}
1515+1616+render(() => <App />, root!);