extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
0
fork

Configure Feed

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

Disable caching for homepage load function

Add no-cache headers to prevent stale data after structure changes.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

+5
+5
src/routes/+page.server.ts
··· 28 28 export const load: PageServerLoad = async (event) => { 29 29 const session = await getSession(event); 30 30 31 + // Disable caching for development 32 + event.setHeaders({ 33 + 'cache-control': 'no-cache, no-store, must-revalidate', 34 + }); 35 + 31 36 try { 32 37 // Fetch all game records from UFOs API 33 38 const gamesResponse = await fetch('https://ufos-api.microcosm.blue/records?collection=boo.sky.go.game&limit=500');