import { ViteReactSSG } from "vite-react-ssg";
import { routes } from "./routes";
import "./index.css";

// vite-react-ssg statically prerenders every route in `routes` to HTML at
// build time, then hydrates on the client. No server runtime is involved.
export const createRoot = ViteReactSSG({ routes });
