[PR #577] [MERGED] feat!: fumadocs example, mark clientReferenceDedup experimental #684

Closed
opened 2026-05-06 13:09:31 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/cloudflare/vinext/pull/577
Author: @hyoban
Created: 3/17/2026
Status: Merged
Merged: 3/19/2026
Merged by: @james-elicx

Base: mainHead: 3-17-fumadocs-template


📝 Commits (10+)

📊 Changes

29 files changed (+1906 additions, -50 deletions)

View changed files

examples/fumadocs-docs-template/.gitignore (+27 -0)
examples/fumadocs-docs-template/README.md (+45 -0)
examples/fumadocs-docs-template/app/(home)/layout.tsx (+6 -0)
examples/fumadocs-docs-template/app/(home)/page.tsx (+16 -0)
examples/fumadocs-docs-template/app/api/search/route.ts (+7 -0)
examples/fumadocs-docs-template/app/docs/[[...slug]]/page.tsx (+62 -0)
examples/fumadocs-docs-template/app/docs/layout.tsx (+11 -0)
examples/fumadocs-docs-template/app/global.css (+3 -0)
examples/fumadocs-docs-template/app/layout.tsx (+17 -0)
examples/fumadocs-docs-template/app/llms-full.txt/route.ts (+10 -0)
examples/fumadocs-docs-template/app/llms.mdx/docs/[[...slug]]/route.ts (+20 -0)
examples/fumadocs-docs-template/app/llms.txt/route.ts (+8 -0)
examples/fumadocs-docs-template/app/og/docs/[...slug]/route.tsx (+28 -0)
examples/fumadocs-docs-template/components/mdx.tsx (+15 -0)
examples/fumadocs-docs-template/content/docs/index.mdx (+13 -0)
examples/fumadocs-docs-template/content/docs/test.mdx (+17 -0)
examples/fumadocs-docs-template/lib/cn.ts (+1 -0)
examples/fumadocs-docs-template/lib/layout.shared.tsx (+17 -0)
examples/fumadocs-docs-template/lib/source.ts (+27 -0)
examples/fumadocs-docs-template/next.config.mjs (+19 -0)

...and 9 more files

📄 Description

  • Make clientReferenceDedup as experimental to prefer optimizeDeps (let me know if you do not like this change)

🔄 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/cloudflare/vinext/pull/577 **Author:** [@hyoban](https://github.com/hyoban) **Created:** 3/17/2026 **Status:** ✅ Merged **Merged:** 3/19/2026 **Merged by:** [@james-elicx](https://github.com/james-elicx) **Base:** `main` ← **Head:** `3-17-fumadocs-template` --- ### 📝 Commits (10+) - [`d9c7303`](https://github.com/cloudflare/vinext/commit/d9c7303c9a3d0dc0576e1126f77149853c89e166) chore: init fumadocs - [`854de89`](https://github.com/cloudflare/vinext/commit/854de89642c61644d53ae04a3b84e30a56dbf683) vinext init - [`05a719e`](https://github.com/cloudflare/vinext/commit/05a719ed62e141d0ff212d1bb34b06e01c1a895d) fix dev - [`2103e91`](https://github.com/cloudflare/vinext/commit/2103e9193fe93f4c977abc8a8ba052c9f6a2490f) Merge branch 'cloudflare:main' into 3-17-fumadocs-template - [`bc926b1`](https://github.com/cloudflare/vinext/commit/bc926b1a2a5c27e265c1b1668dbdeca69648b5b8) tweaks - [`0140086`](https://github.com/cloudflare/vinext/commit/014008633d5e24a9095fc0a2ef1e425ad8c23403) tweaks - [`7ba248a`](https://github.com/cloudflare/vinext/commit/7ba248ad55542cf16c2ccca060f36139fafd2c68) tweaks - [`0f12702`](https://github.com/cloudflare/vinext/commit/0f127027ebf2e108c69efc5e7bed59ba3beecebe) prefer exports - [`7266f6b`](https://github.com/cloudflare/vinext/commit/7266f6b30d45fa6c468027e51d089fe960bf2044) tweaks - [`d60e711`](https://github.com/cloudflare/vinext/commit/d60e711150acf27fae3c6a94e6deee517e105b7b) try new approach ### 📊 Changes **29 files changed** (+1906 additions, -50 deletions) <details> <summary>View changed files</summary> ➕ `examples/fumadocs-docs-template/.gitignore` (+27 -0) ➕ `examples/fumadocs-docs-template/README.md` (+45 -0) ➕ `examples/fumadocs-docs-template/app/(home)/layout.tsx` (+6 -0) ➕ `examples/fumadocs-docs-template/app/(home)/page.tsx` (+16 -0) ➕ `examples/fumadocs-docs-template/app/api/search/route.ts` (+7 -0) ➕ `examples/fumadocs-docs-template/app/docs/[[...slug]]/page.tsx` (+62 -0) ➕ `examples/fumadocs-docs-template/app/docs/layout.tsx` (+11 -0) ➕ `examples/fumadocs-docs-template/app/global.css` (+3 -0) ➕ `examples/fumadocs-docs-template/app/layout.tsx` (+17 -0) ➕ `examples/fumadocs-docs-template/app/llms-full.txt/route.ts` (+10 -0) ➕ `examples/fumadocs-docs-template/app/llms.mdx/docs/[[...slug]]/route.ts` (+20 -0) ➕ `examples/fumadocs-docs-template/app/llms.txt/route.ts` (+8 -0) ➕ `examples/fumadocs-docs-template/app/og/docs/[...slug]/route.tsx` (+28 -0) ➕ `examples/fumadocs-docs-template/components/mdx.tsx` (+15 -0) ➕ `examples/fumadocs-docs-template/content/docs/index.mdx` (+13 -0) ➕ `examples/fumadocs-docs-template/content/docs/test.mdx` (+17 -0) ➕ `examples/fumadocs-docs-template/lib/cn.ts` (+1 -0) ➕ `examples/fumadocs-docs-template/lib/layout.shared.tsx` (+17 -0) ➕ `examples/fumadocs-docs-template/lib/source.ts` (+27 -0) ➕ `examples/fumadocs-docs-template/next.config.mjs` (+19 -0) _...and 9 more files_ </details> ### 📄 Description - Make clientReferenceDedup as experimental to prefer optimizeDeps (let me know if you do not like this change) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:09:31 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/vinext#684
No description provided.