fix(astro): EN index reads from src/content, not ../../docs/wiki #257

Merged
clawdie merged 1 commit from fix/astro-index-path into main 2026-06-28 01:34:08 +02:00

View file

@ -2,8 +2,8 @@
import fs from "node:fs";
import path from "node:path";
const WIKI_DIR = path.resolve("../../docs/wiki");
const EXCLUDE = [".git", "index.md"];
const WIKI_DIR = path.resolve("src/content");
const EXCLUDE = [".git", "index.md", "sl"];
function walkMarkdown(dir, prefix = "") {
const entries = fs.readdirSync(dir, { withFileTypes: true });