Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1// @refresh reload
2import { createHandler, StartServer } from '@solidjs/start/server';
3
4export default createHandler(() => (
5 <StartServer
6 document={({ assets, children, scripts }) => (
7 <html lang="en">
8 <head>
9 <meta charset="utf-8" />
10 <meta name="viewport" content="width=device-width, initial-scale=1" />
11 <title>URQL with SolidStart</title>
12 {assets}
13 </head>
14 <body>
15 <div id="app">{children}</div>
16 {scripts}
17 </body>
18 </html>
19 )}
20 />
21));