Skip to content

Commit 1edb4f6

Browse files
fix: ignore /tags route as well in llms.txt (#562)
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
1 parent 7254be9 commit 1edb4f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/docusaurus.llms.plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function docusaurusPluginLLMs(
6262
const allRoutes = Object.keys(routesBuildMetadata).filter(
6363
(path) =>
6464
path.startsWith(`/${docsDir}/`) &&
65-
[`/category/`, "/tags/", ...ignorePaths].find((pathToIgnore) =>
65+
[`/category/`, "/tags", ...ignorePaths].find((pathToIgnore) =>
6666
path.includes(pathToIgnore)
6767
) === undefined
6868
);

0 commit comments

Comments
 (0)