[PR #111] [CLOSED] Optimize documentation images to reduce repository size (#110) #128

Closed
opened 2026-02-23 17:19:46 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anythingllm-docs/pull/111
Author: @JosephASG
Created: 11/4/2024
Status: Closed

Base: devHead: 110-image-optimization


📝 Commits (10+)

  • 9a6a680 Added Agent Setup + Usage Guides and more (#19)
  • 31a5e7a patch: merge with main
  • a99e6dc fix wrong paths for faq images
  • 6f9e356 Merge pull request #24 from Mintplex-Labs/23-bug-wrong-image-paths-on-llm-not-using-my-docs-page
  • 9cfb61a add SQL agent demo
  • bf95986 Merge branch 'main' of github.com:Mintplex-Labs/anythingllm-docs
  • 124fb4a Development (#26)
  • 8c148ea fix wrong image path
  • b4b70d9 Docs v2 priv (#33)
  • 6bee8c4 add redirect for 502 error page docs

📊 Changes

474 files changed (+6314 additions, -3252 deletions)

View changed files

.prettierignore (+1 -0)
.prettierrc (+15 -0)
📝 .vscode/settings.json (+2 -1)
📝 README.md (+13 -10)
components/icons/database.svg (+3 -0)
📝 components/icons/index.ts (+1 -0)
📝 next.config.js (+9 -0)
📝 package.json (+7 -4)
📝 pages/_app.tsx (+3 -3)
📝 pages/_document.js (+3 -3)
📝 pages/_meta.json (+160 -28)
pages/agent-not-using-tools.mdx (+98 -0)
📝 pages/agent/_meta.json (+8 -8)
pages/agent/custom/_meta.json (+38 -0)
pages/agent/custom/developer-guide.mdx (+97 -0)
pages/agent/custom/handler-js.mdx (+149 -0)
pages/agent/custom/introduction.mdx (+77 -0)
pages/agent/custom/plugin-json.mdx (+191 -0)
pages/agent/overview.mdx (+65 -0)
pages/agent/setup.mdx (+131 -0)

...and 80 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style

Relevant Issues

resolves #110

What is in this change?

This pull request includes the optimization of images in the documentation for the anything-llm application. I compressed the images, reducing the total size from 277 MB to 39.3 MB without sacrificing quality. This change improves load times for the documentation site and reduces the repository size, making it easier to clone and navigate.

Additional Information

This optimization is intended to enhance the user experience by decreasing bandwidth usage and improving accessibility for contributors and viewers. No other content was altered in this process.

Validations

  • Ensured updated documentation pass spell check
  • Updated or added relevant links as needed
  • Reviewed the changes for clarity and accuracy
  • Successfully ran the code locally without encountering errors

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anythingllm-docs/pull/111 **Author:** [@JosephASG](https://github.com/JosephASG) **Created:** 11/4/2024 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `110-image-optimization` --- ### 📝 Commits (10+) - [`9a6a680`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/9a6a6803583882863470654ce19cb4a30283c625) ✨ Added Agent Setup + Usage Guides and more (#19) - [`31a5e7a`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/31a5e7a45c3b4e4ebd8e67c98daf16478e005c89) patch: merge with main - [`a99e6dc`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/a99e6dc211da99ee5e6c1c4f87995a8459e3a911) fix wrong paths for faq images - [`6f9e356`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/6f9e35684498160c70902308bee2cdb449e36d85) Merge pull request #24 from Mintplex-Labs/23-bug-wrong-image-paths-on-llm-not-using-my-docs-page - [`9cfb61a`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/9cfb61adc092d995547810b878aea68e7575122d) add SQL agent demo - [`bf95986`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/bf959868c0562d85d2afdc496f2b4520a0cc3bdc) Merge branch 'main' of github.com:Mintplex-Labs/anythingllm-docs - [`124fb4a`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/124fb4a93aca88d5571fb4570e3400977b8e81c7) Development (#26) - [`8c148ea`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/8c148ea48954cfbacc8d6e7ed426dca72440d797) fix wrong image path - [`b4b70d9`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/b4b70d9c573111fed0aa3dd994bc2844e850783a) Docs v2 priv (#33) - [`6bee8c4`](https://github.com/Mintplex-Labs/anythingllm-docs/commit/6bee8c409ac23228d54a0886b893d9e86ac73e86) add redirect for 502 error page docs ### 📊 Changes **474 files changed** (+6314 additions, -3252 deletions) <details> <summary>View changed files</summary> ➕ `.prettierignore` (+1 -0) ➕ `.prettierrc` (+15 -0) 📝 `.vscode/settings.json` (+2 -1) 📝 `README.md` (+13 -10) ➕ `components/icons/database.svg` (+3 -0) 📝 `components/icons/index.ts` (+1 -0) 📝 `next.config.js` (+9 -0) 📝 `package.json` (+7 -4) 📝 `pages/_app.tsx` (+3 -3) 📝 `pages/_document.js` (+3 -3) 📝 `pages/_meta.json` (+160 -28) ➕ `pages/agent-not-using-tools.mdx` (+98 -0) 📝 `pages/agent/_meta.json` (+8 -8) ➕ `pages/agent/custom/_meta.json` (+38 -0) ➕ `pages/agent/custom/developer-guide.mdx` (+97 -0) ➕ `pages/agent/custom/handler-js.mdx` (+149 -0) ➕ `pages/agent/custom/introduction.mdx` (+77 -0) ➕ `pages/agent/custom/plugin-json.mdx` (+191 -0) ➕ `pages/agent/overview.mdx` (+65 -0) ➕ `pages/agent/setup.mdx` (+131 -0) _...and 80 more files_ </details> ### 📄 Description ### Pull Request Type - [ ] ✨ feat - [ ] 🐛 fix - [x] ♻️ refactor - [ ] 💄 style ### Relevant Issues resolves #110 ### What is in this change? This pull request includes the optimization of images in the documentation for the anything-llm application. I compressed the images, reducing the total size from 277 MB to 39.3 MB without sacrificing quality. This change improves load times for the documentation site and reduces the repository size, making it easier to clone and navigate. ### Additional Information This optimization is intended to enhance the user experience by decreasing bandwidth usage and improving accessibility for contributors and viewers. No other content was altered in this process. ### Validations - [x] Ensured updated documentation pass spell check - [ ] Updated or added relevant links as needed - [x] Reviewed the changes for clarity and accuracy - [x] Successfully ran the code locally without encountering errors --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-23 17:19:46 -05:00
yindo closed this issue 2026-02-23 17:19:47 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anythingllm-docs#128