We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44425b0 commit afe1630Copy full SHA for afe1630
bin/generate-index-md.ts
@@ -14,7 +14,12 @@ import YAML from "yaml";
14
const files = await glob("dist/**/*.html");
15
16
for (const file of files) {
17
- if (file === "dist/index.html" || file === "dist/404.html") {
+ if (
18
+ file === "dist/index.html" ||
19
+ file === "dist/404.html" ||
20
+ file === "dist/llms.txt" ||
21
+ file.includes("llms-full.txt")
22
+ ) {
23
continue;
24
}
25
0 commit comments