Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 548 B view raw
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));