[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt. roe.dev
0

Configure Feed

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

fix: always display conference title for upcoming conferences

+1 -1
+1 -1
server/api/upcoming-conferences.get.ts
··· 3 3 const talkQuery = groq` 4 4 *[_type == 'talk' && date >= now()] { 5 5 title, 6 - "name": coalesce(title, source), 6 + "name": coalesce(source, title), 7 7 "dates": date, 8 8 endDate, 9 9 link,