fix(vinxi): export default client entry mount

This commit is contained in:
Ashwin Kumar 2026-03-20 15:40:17 +01:00
parent 998bebc8ec
commit 96ebcad709

View file

@ -1,4 +1,4 @@
// @refresh reload
import { mount, StartClient } from "@solidjs/start/client";
mount(() => <StartClient />, document.getElementById("app")!);
export default mount(() => <StartClient />, document.getElementById("app")!);