atproto utils for zig zat.dev
atproto sdk zig
26
fork

Configure Feed

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

fix: use full paths in devlog index links

SPA doesn't resolve relative paths - need devlog/001-... not just 001-...

🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

zzstoatzz 26c76a04 cafdb13a

+1 -1
+1 -1
scripts/build-site.mjs
··· 181 181 const indexMd = [ 182 182 "# devlog", 183 183 "", 184 - ...devlogEntries.map((e) => `- [${e.title}](${e.path.replace("devlog/", "")})`), 184 + ...devlogEntries.map((e) => `- [${e.title}](${e.path})`), 185 185 "", 186 186 ].join("\n"); 187 187 await writeFile(path.join(outDocsDir, "devlog", "index.md"), indexMd, "utf8");