Skip to content

Instantly share code, notes, and snippets.

@MrFoxPro
MrFoxPro / index.entry.tsx
Last active July 11, 2023 16:32
Prerendering
import { renderToStringAsync } from 'solid-js/web'
export function IndexPage() {
return <div>Here will be a landing. But now loading App.</div>
}
export async function render() {
const result = await renderToStringAsync(IndexPage)
return {
url: '/',