My landing page, written in Astro hayden.moe
0
fork

Configure Feed

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

fix: resolve build fails

+4 -2
+1
.gitignore
··· 3 3 .react-router 4 4 /.wrangler 5 5 /build 6 + /dist 6 7 .env 7 8 .dev.vars 8 9 .astro
+2
src/pages/rss.xml.ts
··· 2 2 import type { APIContext } from "astro"; 3 3 import { getPosts } from '~/atproto/getPosts'; 4 4 5 + export const prerender = false; 6 + 5 7 export const GET = async (context: APIContext) => { 6 8 const posts = await getPosts(context.locals, undefined); 7 9
+1 -2
src/style.css
··· 1 - @import '@fontsource/geist-sans';/* layer(base); */ 2 - @import '@fontsource/geist-mono';/* layer(base); */ 1 + @import '@fontsource/geist-mono' layer(base); 3 2 4 3 @import 'tailwindcss'; 5 4 @plugin '@tailwindcss/typography';