Skip to content

Commit 7254be9

Browse files
feat: ignore tags route in llms.txt (#561)
Signed-off-by: David Dal Busco <david.dalbusco@outlook.com>
1 parent 054c734 commit 7254be9

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/`, ...ignorePaths].find((pathToIgnore) =>
65+
[`/category/`, "/tags/", ...ignorePaths].find((pathToIgnore) =>
6666
path.includes(pathToIgnore)
6767
) === undefined
6868
);

0 commit comments

Comments
 (0)