Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ dist
# Remote docs fetched during build (generated content)
static/remote-docs/

# LLM.txt files — managed by generate-llmstxt workflow via S3, not git
static/llms.txt
static/llms-full.txt
static/llms-ctx.txt
Comment on lines +117 to +119
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep llms assets in this repo’s build output

By ignoring and deleting static/llms*.txt, this repo’s npm run build output no longer contains /llms.txt, but the UI still requests it (src/components/LlmCopyButton.tsx, fetch to /llms.txt). I checked .github/workflows/gh-pages.yml, and this pipeline only builds and uploads the tarball from build/ with no in-repo regeneration step, so any environment that deploys this artifact without the external post-deploy uploader will serve 404s and break the copy action. Please keep a fallback in-repo generation/source file path or add generation to this repository’s build workflow.

Useful? React with 👍 / 👎.


# Serverless directories
.serverless/

Expand Down
Loading
Loading