Atproto AMA app
0
fork

Configure Feed

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

at main 21 lines 541 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 <link rel="icon" href="/favicon.ico" /> 12 {assets} 13 </head> 14 <body id="app"> 15 {children} 16 {scripts} 17 </body> 18 </html> 19 )} 20 /> 21));