/* @refresh reload */ import { MetaProvider } from "@solidjs/meta"; import { Router, useNavigate } from "@solidjs/router"; import { render } from "solid-js/web"; import { createEffect, enableScheduling } from "solid-js"; import App from "./App"; import { db } from "./db/db"; enableScheduling(); const root = document.getElementById("root"); if (import.meta.env.DEV && !(root instanceof HTMLElement)) { throw new Error( "Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?", ); } if (root) { render( () => (
{ const navigate = useNavigate(); const { pathname } = props.location; createEffect(() => { if (!db && pathname !== "/") { navigate("/"); } }); return props.children; }} >
), root, ); }