Configuration
LLM-Friendly Documentation Export
Zudoku can generate LLM-friendly versions of your documentation following the llms.txt specification.
During build, three types of files are generated:
.mdfiles - Individual pages with frontmatter removedllms.txt- Summary with links to all pagesllms-full.txt- Complete documentation in one file
All features are enabled by default.
Configuration
The llms configuration is nested under the docs configuration:
zudoku.config.tsx
All options are disabled by default.
publishMarkdown
Generates .md files for each page without frontmatter. Pages at /docs/quickstart are also
accessible at /docs/quickstart.md.
llmsTxt
Generates an llms.txt file with links to all documentation pages:
llms.txt
llmsTxtFull
Generates llms-full.txt containing the complete content of all pages.
includeProtected
By default, protected routes are excluded. Set to true to include them.
Output
Generated files are available at:
Code
Redirect pages, error pages (400, 404, 500), and protected routes are automatically excluded.
Last modified on